diff options
author | chai <chaifix@163.com> | 2022-02-20 17:38:43 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-02-20 17:38:43 +0800 |
commit | ea057c3128ee93a9c5ca606e39d547ee0cadb44f (patch) | |
tree | a4df4a1d9ff39ab7e610e16e7fc468d9b668b1e7 /JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs | |
parent | 359e758911e3c29a789af60ba5ee208c8c7169d9 (diff) |
*rename
Diffstat (limited to 'JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs')
-rw-r--r-- | JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs b/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs index fe00366..c4a7bee 100644 --- a/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs +++ b/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Rigidbody/MoveByVelocity/Scripts/StairChecker.cs @@ -2,18 +2,24 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; -public class StairChecker : MonoBehaviour + +namespace JamUtils.FirstPersonCharacterController.RigidbodyVelocity { - public Transform upper; - public Transform lower; - - void Start() - { - - } - - void Update() - { - - } + + public class StairChecker : MonoBehaviour + { + public Transform upper; + public Transform lower; + + void Start() + { + + } + + void Update() + { + + } + } + } |