Topic: ISceneNode.getChildren() doesnt work

Local bm:IAnimatedMesh =  irr.irr_scene.getMesh("data/boxes.b3d")
Local boxes:IAnimatedMeshSceneNode = irr.irr_scene.addAnimatedMeshSceneNode(bm)

Local c:ISceneNode[] =  boxes.getChildren()
DebugStop()

Re: ISceneNode.getChildren() doesnt work

greetings smile  in Irrlicht, B3D is just a mesh format not a scene format so you cannot retrieve children from within.  you can retrieve joints from B3D files using getJointNode() method of IAnimatedSceneNode.  If you wish to piece together a scene, you can use irrEdit to create a .irr file and load that into Irrlicht.