Figured that this would move the current scene to another layer, but alas it will not:
Dim OutputFB as xpOutputFrameBuffer
Dim OutgoingCG as xpScene
Dim InAnimCtrl as xpAnimController
Dim OutAnimCtrl as xpAnimController
Dim FB as Integer
Dim Layer as Integer
Dim AnimInName as String
Dim AnimOutName as String
Dim B2BAnimInName as String
Dim B2BAnimOutName as String
AnimInName = "AnIn"
AnimOutName = "AnOut"
B2BAnimInName = "B2BAnIn"
B2BAnimOutName = "B2BAnOut"
' ---------------------------------------------------------------------------
Self.MoveLayer(OutgoingCG.DefaultFramebufferLayer, 1)
Self.GetAnimControllerByName(AnimInName, InAnimCtrl)
InAnimCtrl.Play
It plays the Animation Controller that I have specified but will not change the layer, tried several different
variables. Any help would be appreciated.