From e1162479e79cff55116177ab0598acbbed748c02 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Fri, 17 Jun 2022 20:25:20 +0900 Subject: [PATCH] =?UTF-8?q?Awake=20=E3=81=A7=E5=88=9D=E6=9C=9F=E5=8C=96?= =?UTF-8?q?=E3=81=99=E3=82=8B=E3=81=AE=E3=81=8C=E6=97=A9=E3=81=99=E3=81=8E?= =?UTF-8?q?=E3=81=A6=20Runtime=20=E3=83=AD=E3=83=BC=E3=83=89=E3=81=A7?= =?UTF-8?q?=E5=8B=95=E4=BD=9C=E3=81=97=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../VRM10/Runtime/Components/Constraint/Vrm10AimConstraint.cs | 2 +- .../VRM10/Runtime/Components/Constraint/Vrm10RollConstraint.cs | 2 +- .../Runtime/Components/Constraint/Vrm10RotationConstraint.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/VRM10/Runtime/Components/Constraint/Vrm10AimConstraint.cs b/Assets/VRM10/Runtime/Components/Constraint/Vrm10AimConstraint.cs index 5121f485b..72d364c82 100644 --- a/Assets/VRM10/Runtime/Components/Constraint/Vrm10AimConstraint.cs +++ b/Assets/VRM10/Runtime/Components/Constraint/Vrm10AimConstraint.cs @@ -38,7 +38,7 @@ namespace UniVRM10 Quaternion _dstRestLocalQuat; - void Awake() + void Start() { if (Source == null) { diff --git a/Assets/VRM10/Runtime/Components/Constraint/Vrm10RollConstraint.cs b/Assets/VRM10/Runtime/Components/Constraint/Vrm10RollConstraint.cs index 204e7405a..56993a704 100644 --- a/Assets/VRM10/Runtime/Components/Constraint/Vrm10RollConstraint.cs +++ b/Assets/VRM10/Runtime/Components/Constraint/Vrm10RollConstraint.cs @@ -35,7 +35,7 @@ namespace UniVRM10 Quaternion _srcRestLocalQuat; Quaternion _dstRestLocalQuat; - void Awake() + void Start() { if (Source == null) { diff --git a/Assets/VRM10/Runtime/Components/Constraint/Vrm10RotationConstraint.cs b/Assets/VRM10/Runtime/Components/Constraint/Vrm10RotationConstraint.cs index 9cf573896..848f0539b 100644 --- a/Assets/VRM10/Runtime/Components/Constraint/Vrm10RotationConstraint.cs +++ b/Assets/VRM10/Runtime/Components/Constraint/Vrm10RotationConstraint.cs @@ -20,7 +20,7 @@ namespace UniVRM10 Quaternion _srcRestLocalQuatInverse; Quaternion _dstRestLocalQuat; - void Awake() + void Start() { if (Source == null) {