Displaying Specific Nodes

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
xteraco
Posts: 12
Joined: Fri Sep 15, 2006 11:42 pm

Displaying Specific Nodes

Post by xteraco »

I've got a program that has 2 nodes, and a custom timer. What I'm wanting to do is, display the first node, and after about 10 seconds, display the second node... My question, is their a way to display specific nodes, instead of smgr-drawAll(); ? I spent some time searching the reference, and didnt see anything that jumped out at me.
Irme
Posts: 55
Joined: Sat Jul 16, 2005 8:24 am

Post by Irme »

I would set the visible property of your node to false until after your 10 seconds is up. then set it to true. That should fix your problem.

and that way you don't have to mess with drawing stuff individually.
xteraco
Posts: 12
Joined: Fri Sep 15, 2006 11:42 pm

Post by xteraco »

Sounds good, thanks for the info. :)
Post Reply