I have a path to a scene and I can easily get its UUID with:
uuid_number = SendCommand(scene_path & "*UUID GET")
I can also load it into a Dynamic Scene with:
System.SendCommand("#" & dyn_scene.VizId & "*TEXTURE*IMAGE*DYNAMIC*SUBSCENE*SCENE SET " & uuid_number & "")
Then, I can get a VizId of the scene loaded into the Dynamic Scene with:
Scene_ID = SendCommand("#" & dyn_scene.VizId & "*TEXTURE*IMAGE*DYNAMIC*SUBSCENE*SCENE GET")
What I would like to have now is a way to have a variable of type Scene and get it to point to the subscene of the dynamic scene.
A variable like:
Dim my_scene as Scene
my_scene = ...whatever_it_is_required
...so, is it possible and, if yes, how can I make it?
uuid_number = SendCommand(scene_path & "*UUID GET")
I can also load it into a Dynamic Scene with:
System.SendCommand("#" & dyn_scene.VizId & "*TEXTURE*IMAGE*DYNAMIC*SUBSCENE*SCENE SET " & uuid_number & "")
Then, I can get a VizId of the scene loaded into the Dynamic Scene with:
Scene_ID = SendCommand("#" & dyn_scene.VizId & "*TEXTURE*IMAGE*DYNAMIC*SUBSCENE*SCENE GET")
What I would like to have now is a way to have a variable of type Scene and get it to point to the subscene of the dynamic scene.
A variable like:
Dim my_scene as Scene
my_scene = ...whatever_it_is_required
...so, is it possible and, if yes, how can I make it?