The forum is read-only. New threads, replies and edits are disabled.
SceneGroupObject
MaineMathMan

Hi, Can someone show me an example of creating a group of scene object to manipulate. How to add them to a group, etc... (SceneObjectGroup, sorry)

Gio

Hi 

If you want to do this in code, just put your scene objects into an array and pass that array to the SceneObjectGroup constructor

var myObjects = [obj1, obj2, obj3];
var my Group = new SceneObjectGroup(myObjects);

From the editor you can select multiple objects (holding shift or ctrl),  then in the bottom right area of your screen you'll see a button to create a SceneObjectGroup with them. 

MaineMathMan

Thank you for a thorough answer!