Первый коммит
This commit is contained in:
19
Assets/Scripts/Car/CarController.cs
Normal file
19
Assets/Scripts/Car/CarController.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class CarController : MonoBehaviour
|
||||
{
|
||||
#region Wheels
|
||||
|
||||
//
|
||||
public Transform FrontLeftWheelTransform;
|
||||
public Transform FrontRightWheelTransform;
|
||||
public Transform RearLeftWheelTransform;
|
||||
public Transform RearRightWheelTransform;
|
||||
public Transform[] ExtraRearWheelTransform;
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
Reference in New Issue
Block a user