Quando dou play na unity aparece a mensagem
All compiler errors have to be fixed before you can enter playmode
segue o codigo:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ControlaJogador : MonoBehaviour
{
// Update is called once per frame
void Update()
{
float eixoX = Imput.GetAxis("Horizontal");
float eixoZ = Imput.GetAxis("Vertical");
Vector3 direcao = new Vector3(eixoX, 0, eixoZ);
transform.Translate(direcao);
}
}