Oii... Meus zumbis não estão se movimentando, estão com a animação mas não saem do lugar. Não aparece nenhuma mensagem de erro no console, nenhum erro no VS! Conferi e os Zumbis estão com Rigibody e com Jogador setado no Script, o que pode ser?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ControlaInimigo : MonoBehaviour
{
public GameObject Jogador;
public float Velocidade = 5;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
void FixedUpdate()
{
Vector3 direcao = Jogador.transform.position - transform.position;
GetComponent<Rigidbody>().MovePosition
(GetComponent<Rigidbody>().position +
direcao.normalized * Velocidade * Time.deltaTime);
}
}
Obrigad!