From 80983c575ec565078f757f638f3726708647080a Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Tue, 16 Apr 2024 11:08:04 +0800 Subject: *misc --- .../Assets/TABG/Scripts/Animation/StartRotation.cs | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Animation/StartRotation.cs') 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() + { + } + } + +} -- cgit v1.1-26-g67d0