using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
public WheelCollider Right;
public WheelCollider Left;
public WheelCollider BackRight;
public WheelCollider BackLeft;
public float motor=100f;
private void FixedUpdate()
{
Right.motorTorque = Input.GetAxis("Vertical") * motor;
Left.motorTorque = Input.GetAxis("Vertical") * motor;
BackRight.motorTorque = Input.GetAxis("Vertical") * motor;
BackLeft.motorTorque = Input.GetAxis("Vertical") * motor;
}
}
Есть вот такой скрипт, который крутит Wheel Collider по нажатию кнопок. А как заставить двигаться объект двигаться с помощью этих коллайдеров? Помогите пожалуйста!