Почему персонаж не ходит 2д? вот код
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
public float speed;
public float jumpForce;
private float moveInput;
private Rigidbody2D rb;
private void start()
{
rb = GetComponent();
}
private void FixedUpdate()
{
moveInput = Input.GetAxis("Horizontal");
rb.linearVelocity = new Vector2(moveInput * speed,rb.linearVelocity.y);
}
}
-
Вопрос задан
-
42 просмотра