Выдаёт ошибку в юнити Assets\Scripts\PlaerController.cs(7,43): error CS1002: ; expected вот код
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
private CharacterController controller;
public Vector3 dir;
//starte is called before the first frame update
void Start()
{
Controller = GetCompanet();
}
void FixedUpdate()
{
Controller.Move(dir * Time.fixedDeltaTime);
}
}