C#C
C#3y ago
Paddy

✅ error CS1513: } expected in unity

i get "error CS1513: } expected" for this script in unity pls help:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem;
public class InputManager : MonoBehaviour
{
private PlayerInput playerInput;
private PlayerInput.OnFootActions onFoot;

private.PlayerMotor motor;
// Start is called before the first frame update
void Awake()
{
playerInput = new PlayerInput();
onFoot = playerInput,OnFoot;
motor = GetComponent<PlayerMotor>();

}

// Update is called once per frame
void FixedUpdate()
{
//tell the playermotor to move using the value from our movement action
motor.ProcessMove(onFoot.movement.ReadValue<Vector2>());
}
private void OnEnable()
{
onFoot.Enable();
}
private void OnDisable()
{
onFoot.Disable();
}
}
Was this page helpful?