Parents a collection of X3DObject child objects or a single X3DObject child object under this 3D object. AddChild is typically used for moving child objects from other X3DObject objects.
X3DObject.AddChild( [Items] );  | 
| Parameter | Type | Description | 
|---|---|---|
| Items | X3DObjectCollection or X3DObject | An X3DObjectCollection or a single X3DObject | 
NewScene , false
set oRoot = Application.ActiveProject.ActiveScene.Root
set oChildren = oRoot.Children
set oObj = oRoot.AddGeometry( "Cone","MeshSurface" )
oObj.AddChild oChildren
for each oChild in oObj.Children
        Application.LogMessage oChild.Name & ", " & TypeName(oChild)
next
' Expected results:
'INFO : Camera_Root, CameraRig
'INFO : light, Light
 |