diff options
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() + { + } + } + +} |