20 lines
408 B
C#
20 lines
408 B
C#
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
|
|
}
|
|
|