FPS Camera

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
Guest

FPS Camera

Post by Guest »

I new programmer i want to program FPS Game but i don't know how to
set up camera ,that make camera look forward of model.
can anyone give me an example ? thank
Guest

Post by Guest »

scenemgr->addCameraSceneNodeFPS();
LordNaikon
Posts: 164
Joined: Wed May 05, 2004 5:34 pm
Location: Germany Berlin
Contact:

Post by LordNaikon »

take a closer look to the tutorials for example the quake3map tut

http://irrlicht.sourceforge.net/tut002.html

as guest already wrote

ISceneManager* smgr = device->getSceneManager();
smgr->addCameraSceneNodeFPS(0, 100.0f, 400.0f, -1, 0, 0);

[/quote]
Post Reply