Javascript list of runtimeScene object-group objects

Objects group are resolved and used at the moment of code generation only, as a part of the object picking process. At runtime, they don’t exist anymore.
When scripting via javascript events, you have to do the object picking yourself, including grouping objects list by yourself, like this: let objects = runtimeScene.getObjects("object1").concat(runtimeScene.getObjects("object2")).concat(....

1 Like