Hello!
I am new to Irrlicht and i hope this is not a too silly question.
I just played around with irllicht and its tutorials and coded a little app
which just loads a Mesh representing a lansdscape.
Now I wanted to fly over this landscape with my camera always looking down but the camera always looks to its target.
Is it possible to turn the camera target of? or do i have to animate the target to.
I am using the normal camera (not FPS or Maya).
Thanks for help!
Switching of the camera target?
Each frame, call setTarget(pos)
So, if you have a camera called "camera" and a node called "node".
So, if you have a camera called "camera" and a node called "node".
Code: Select all
camera->setTarget(node->getPosition());
Crud, how do I do this again?