diff options
author | chai <215380520@qq.com> | 2024-04-16 11:08:04 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2024-04-16 11:08:04 +0800 |
commit | 80983c575ec565078f757f638f3726708647080a (patch) | |
tree | 14cad7cf19d4670ecfba3f371e49540e0042155c /ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs | |
parent | 0464810f2f83c86560c3422d664380d474cb3e56 (diff) |
*misc
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs')
-rw-r--r-- | ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs b/ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs new file mode 100644 index 0000000..1256dde --- /dev/null +++ b/ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs @@ -0,0 +1,26 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace Rigging.Animations +{ + + // ¼Ç¼³õʼrotation + public class StartRotation : MonoBehaviour + { + public Quaternion startRotation; + + public Quaternion startRotationLocal; + + private void Start() + { + startRotation = base.transform.rotation; + startRotationLocal = base.transform.localRotation; + } + + private void Update() + { + } + } + +} |