Персонаж не реагирует на движения, хотя был написан код, а так же выдает такую ошибку:
Вот данный код:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
Rigidbody2D rb;
public float speed;
// Start is called before the first frame update
void Start()
{
rb = GetComponent<Rigidbody2D>();
}
// Update is called once per frame
void Update()
{
}
void FixedUpdate()
{
rb.velocity = new Vector2(Input.GetAxis("Horrizontal") * speed, rb.velocity.y);
}
}