Первый коммит
This commit is contained in:
15
Assets/Scripts/Car/Core.cs
Normal file
15
Assets/Scripts/Car/Core.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user