How can I render same mesh object 5-times?
I'd like to draw my mesh 5 times...
but... I don't know how...
Should I Load Same Object 5 times?!!
I need your help... thanks..
How can I render same mesh object 5-times?
use array
like this
like this
Code: Select all
ISceneNode* xo[5];
for (int i=0; i<=4; i++)
{
xo[i] = smgr->addSphereSceneNode();
xo[i]->setPosition(vector3df(i,i,i));
}