Hi,
but how to create a visual plane in Irrlicht ? I search in the api docment, but i donot found any plane mesh class. I know if i really donot find any directly solutions, i can create a manual object like tutorial 3. Before that, i want to make sure whether there isnot any directly solution ?
Thanks.
how to create a visual plane ?
smgr->addHillPlaneMesh is what you are looking for (1x1, no hills)
bitplane, thank you . Before your post, i created a plane using
But i think your way is better .
Code: Select all
ISceneNode *node = smgr->addCubeSceneNode( 10, 0, -1, vector3df( 0, 0, 0 ), vector3df( 0, 0, 0 ),
vector3df( 100.0f, 0.1f, 100.0f ) );