The scenes collection contains all of the scenes in the DX Studio document. 'scenes.<scene name>.<...>' can access any scene from the entire document, or you can access the current scene with just 'scene.<...>'
Syntax
scenes.<scene name>.<...>
For a description of the properties and methods of a scene, please see the scene script reference.
Examples
scenes.myscene1.script.openDoor(); // calls the 'openDoor' function in the scene 'myscene1'.
scenes.scene_2.objects.ship.script.Explode(); // calls the 'Explode' function of the 'ship' object in 'scene_2'.
Remarks
See Also


