How can I increase or decrease size of mesh/node in realtime

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
robpearmain
Posts: 12
Joined: Mon May 22, 2006 2:56 pm

How can I increase or decrease size of mesh/node in realtime

Post by robpearmain »

Is there anyway to increase the size of a mesh/node, similar to Blitz3D's "EntitySize" command

cheers
Xharock
Posts: 71
Joined: Wed May 10, 2006 3:50 pm

Post by Xharock »

vector3df Scale = node->getScale();

while(MainDevice->run())
{
Scale.X += 1;
Scale.Y += 1;
Scale.Z += 1;

node->setScale(Scale);
}
Post Reply