From 01fe012fbf832d0abe335f5e8e98d871043e8882 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 16 Aug 2023 14:49:21 +0900 Subject: [PATCH] 1 origin --- .../Runtime/Components/Vrm10Runtime/Vrm10Runtime.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Assets/VRM10/Runtime/Components/Vrm10Runtime/Vrm10Runtime.cs b/Assets/VRM10/Runtime/Components/Vrm10Runtime/Vrm10Runtime.cs index c80330b20..6c075d77b 100644 --- a/Assets/VRM10/Runtime/Components/Vrm10Runtime/Vrm10Runtime.cs +++ b/Assets/VRM10/Runtime/Components/Vrm10Runtime/Vrm10Runtime.cs @@ -189,7 +189,7 @@ namespace UniVRM10 /// public void Process() { - // 0. Update From VrmAnimation + // 1. Update From VrmAnimation if (VrmAnimation != null) { // copy pose @@ -206,19 +206,19 @@ namespace UniVRM10 // TODO: look at target } - // 1. Control Rig + // 2. Control Rig ControlRig?.Process(); - // 2. Constraints + // 3. Constraints foreach (var constraint in Constraints) { constraint.Process(); } - // 3. Gaze control + // 4. Gaze control LookAt.Process(m_target.LookAtTargetType, m_target.LookAtTarget); - // 4. Apply Expression + // 5. Apply Expression Expression.Process(); } }