Page 1 of 1
Camera Troubles
Posted: Sun May 01, 2016 2:54 am
by the guy thats not good
I have a simple question, how do you get the camera to follow your character? I know you can change the camera with the keyboard but i want to know how to disable that feature in the adventure map im making. Does anybody know how?
Re: Camera Troubles
Posted: Sun May 01, 2016 3:27 am
by Hoang Marcel
You mean like this?
public void OnStartup(){
Game.SetAllowedCameraModes(CameraMode.Dynamic);
Game.SetCurrentCameraMode(CameraMode.Dynamic);
}
Re: Camera Troubles
Posted: Sun May 01, 2016 3:38 am
by the guy thats not good
thanks Hoang, that's the second time you've helped me, I appreciate the help.