15 lines
380 B
C#
15 lines
380 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Core : MonoBehaviour
|
|
{
|
|
#region Create WheelColliders
|
|
public void CreateWheelColliders(CarController carController)
|
|
{
|
|
List <Transform> allWheelModels = new List <Transform> ();
|
|
allWheelModels.Add (carController.FrontLeftWheelTransform);
|
|
}
|
|
|
|
#endregion
|
|
} |