Não consigo dar play no meu projeto, o seguinte erro é exibido: All compiler errors have to be fixed before you can enter the playmode. Assets/movimento_jogador.cs(10,1): error CS1525: Unexpected symbol `void'
Segue o código de movimentação feito em c#:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class movimento_jogador : MonoBehaviour {
public float Velocidade = 10
// Update is called once per frame
void Update ()
{
float eixox = Input.GetAxis("Horizontal");
float eixoz = Input.GetAxis("Vertical");
Vector3 direcao = new Vector3(eixox, 0, eixoz)
transform.Translate(direcao * Velocidade * Time.deltaTime);
}
}