Search found 3 matches

by JoeMill
Mon Mar 08, 2004 12:03 pm
Forum: Beginners Help
Topic: Billboard Movement
Replies: 4
Views: 463

you must create the Irrlichtdevice before you use it. Old: // The device IS NULL. // You try to use the device before you create it. scene::ISceneManager* smgr = device->getSceneManager(); device = createDevice(video::DT_OPENGL, core::dimension2d<s32>(640, 480), 16, false, false, &receiver); sim...
by JoeMill
Sun Jan 25, 2004 12:54 pm
Forum: Beginners Help
Topic: walking forward?
Replies: 22
Views: 4223

Irrlicht has a #define for PI, use irr::core::PI ;)
by JoeMill
Wed Jan 14, 2004 8:52 pm
Forum: Advanced Help
Topic: Problem by with core::list
Replies: 4
Views: 1470

I found the solution

i want it to use like i uye the std::list, but i should a have read the doc a little bit deeper ;). I only need to crete a Iterator for the list, because i receive a reference :oops:, so i chnged the code to this and it works :D core::list<scene::ISceneNode*>::Iterator galChildIt = m_galaxyRootScene...