hello i am trying to make a 2D platform , but i am a 3D artist so i am using 3D models with orthographic camera. I have wrote a script for moving my character left,right at X axis and up,down at Y axis. Similar to anyother side-scroller with difference that the character is flying so it can move up,down freely. Here is my script.
var speed : float; function Update () {
transform.Translate(Input.GetAxis("Horizontal") * Vector3.right * speed * Time.deltaTime);
transform.Translate(Input.GetAxis("Vertical") * Vector3.forward * speed * Time.deltaTime);
} what i want is to character rotate to -90 degrees when i press right button and when i again press left it is to rotate 90 degrees to show a kind of movement. Please help ,
Thanx in Advance
Anonymous
Again : what i wanted is when i press right it should turn -90 and then should move on the right side and when then i press left it should again rotate to 90 and move in the direction.
I think you mean turn 180 lol turning 90 degrees would make him face the background or the camera.
– anon61858128