Hi there, trying to add a number of children to an ObjectContainer3D and name them at the same time, so I can reference them easily later on.
In papervision I could just do:
shelfSet.addChild( p, objName )
which would add the object ‘p’ to ‘shelfset’ and call it ‘objName’
However in Away3d (I’m using broomstick), it seems that addChild only accepts one argument, so I’m wondering how I can do this?
If I do a count of children, could I reference that child number?