AwesomeRunner/Assets/Scripts/Player/Extentions/CharacterControllerExtentions.cs
VladimirPirozhenko 45b277e7d1 Initial commit
2022-08-07 07:31:16 +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;
//}
}