How to delete meshes from the SceneManager?

Post your questions, suggestions and experiences regarding game design, integration of external libraries here. For irrEdit, irrXML and irrKlang, see the
ambiera forums
Post Reply
fabuloes
Posts: 4
Joined: Mon Mar 28, 2011 5:13 pm

How to delete meshes from the SceneManager?

Post by fabuloes »

Hey everybody,

I have a problem to delete a Mesh from the SceneManager, which I have created with addAnimatedSceneNode().
I tried to get the Scene by using getSceneNodeFromId( id ), and then call ->remove(), but it always crashes at this point :(
The id is correct, even as the Scene I get.

I have not very much experience with Irrlicht, and I'm german so don't annoy about bad english ;)
ChaiRuiPeng
Posts: 363
Joined: Thu Dec 16, 2010 8:50 pm
Location: Somewhere in the clouds.. drinking pink lemonade and sunshine..

Post by ChaiRuiPeng »

meshes and scene nodes are different things.

do you have a handle on a pointer to the scene node you are trying to remove?

what exactly are you trying to do? do you need to remove the mesh from memory or you don't want to see the scene node (make it invisible)?
ent1ty wrote: success is a matter of concentration and desire
Butler Lampson wrote: all problems in Computer Science can be solved by another level of indirection
at a cost measure in computer resources ;)
serengeor
Posts: 1712
Joined: Tue Jan 13, 2009 7:34 pm
Location: Lithuania

Post by serengeor »

as long as the node you 'remove()' is correct it should be fine, I can only guess that you're removing it more than one time i.e: in the main loop.
Working on game: Marrbles (Currently stopped).
Post Reply