4
Hi, I have a question on Unity3d 5!
My character, instead of moving forward, with WASD, he moves sideways. My script:
using UnityEngine;
public class PlayerController : MonoBehaviour
{
void Update()
{
var x = Input.GetAxis("Horizontal") * Time.deltaTime * 150.0f;
var z = Input.GetAxis("Vertical") * Time.deltaTime * 3.0f;
transform.Rotate(0, x, 0);
transform.Translate(0, 0, z);
}
}
My mother-in-law:
I don’t know if it matters, but:
take a look here https://unity3d.com/pt/learn/tutorials/topics/scripting/translate-and-rotate
– Leandro Angelo
used the same script and continued the same error...
– Omeuestilo
you just copied and pasted the code or watched the video to understand what you’re doing?
– Leandro Angelo
I had copied it and pasted it, but I saw the video and it didn’t help either
– Omeuestilo
Your sidewalk ride... isn’t it because you built the object like this? Kind put the tank cannon on his side and made it wider than fulfilled?
– Leandro Angelo