AwesomeRunner/Assets/Scripts/Extentions/CharacterControllerExtentions.cs
2022-08-08 11:38:05 +03:00

25 lines
650 B
C#

using System.Collections;
using UnityEngine;
public static class CharacterControllerExtentions //: MonoBehaviour
{
//public static void ChangeWeightOverTime(this CharacterController controller)
//{
//}
//public static void ChangeColliderHeight(float newHeight)
//{
// CharacterController.height = newHeight;
//}
//public static void ChangeColliderCenter(Vector3 newCenter)
//{
// CharacterController.center = newCenter;
//}
//public static void ResetToDefault()
//{
// CharacterController.height = defaultHeight;
// CharacterController.center = defaultCenter;
//}
}