Search found 1 match

by c0de_m0nkey
Wed Apr 22, 2015 1:13 am
Forum: Beginners Help
Topic: Top down camera
Replies: 3
Views: 906

Re: Top down camera

If you still need to rotate the camera after setting postion and target;           Camera->setPosition(0,100,0);         Camera->setTarget(0,0,0); you will need to change the Up Vector for the camera.         core::vector3df cPos = Camera->getUpVector();         cPos.rotateXZBy(0.1, Camera->getPosit...