Camera rotate on y-axis

Blitz3D Forums/Blitz3D Beginners Area/Camera rotate on y-axis

Braden(Posted 2008) [#1]
how do I make the camera rotate on the regular Y axis and not it's own Y axis? If you could show me some code that would be helpful, thanks!


GIB3D(Posted 2008) [#2]
RotateEntity Camera,0,1,0,1


Braden(Posted 2008) [#3]
AH HA! THANKS SO MUCH!


Zeotrope(Posted 2008) [#4]
and...use

EntityPitch(camera)
EntityRoll(camera)
EntityYaw(camera)

these return the camera's pitch / roll / yaw values, respectively.