How do I make a ObjectContainer3D listen for a child being added to itself?
Object3DEvent.SCENE_CHANGED
Object3DEvent.SCENETRANSFORM_CHANGED
These seem not to be the right ones ...
Listening for a child being added to a ObjectContainer3DSoftware: Away3D 4.x |
||
FlyOn, Jr. Member
Posted: 08 December 2011 11:18 AM Total Posts: 36 How do I make a ObjectContainer3D listen for a child being added to itself?
Object3DEvent.SCENE_CHANGED These seem not to be the right ones ...
|
||
|
||
R Villani, Newbie
Posted: 03 February 2012 03:17 AM Total Posts: 13 [ # 2 ] Listen for the Scene3DEvent.ADDED_TO_SCENE from your scene.
scene.addEventListener(Scene3DEvent.ADDED_TO_SCENE, onAdded); |