Need help with camera positioning.

OK first of all i would like to say panda3d is awesome so far and much easier to use as i thought it would be.

My question is about the camera positioning. I have jsut gotten into the manual but the camera positioning isnt clear to me.

is there a way to set the camera’s position and rotations like:

base.setcamerapos( X , Y , Z )

Thanks for help!

Close.

base.camera.setPos(X, Y, Z)

Note that you need to call base.disableMouse() once before you can position your camera (the name is misleading, it does not disable mouse, it just disables the default camera control.)

wow youre fast lol… Thanks so much and yes i alredy disabled the mouse positioning.