From eb7936bfe56e0a4d25b2bfb0fd10cffc3dbd4f39 Mon Sep 17 00:00:00 2001 From: matsutaka Date: Wed, 24 Jun 2026 18:08:49 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=8D=E8=A6=81=E3=81=AAEntityId.ToUL?= =?UTF-8?q?ong=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ClothSample/ClothWarp/Editor/ClothWarpRootEditor.cs | 2 +- .../VRM10/Editor/Components/SpringBone/SpringBoneTreeView.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/VRM10_Samples/ClothSample/ClothWarp/Editor/ClothWarpRootEditor.cs b/Assets/VRM10_Samples/ClothSample/ClothWarp/Editor/ClothWarpRootEditor.cs index 5ab4f8919..42caa1362 100644 --- a/Assets/VRM10_Samples/ClothSample/ClothWarp/Editor/ClothWarpRootEditor.cs +++ b/Assets/VRM10_Samples/ClothSample/ClothWarp/Editor/ClothWarpRootEditor.cs @@ -158,7 +158,7 @@ namespace UniVRM10.ClothWarp.Components } } #if UNITY_6000_5_OR_NEWER - static int GetControlId(Component component) => EntityId.ToULong(component.GetEntityId()).GetHashCode(); + static int GetControlId(Component component) => component.GetEntityId().GetHashCode(); #else static int GetControlId(Component component) => component.GetInstanceID(); #endif diff --git a/Packages/VRM10/Editor/Components/SpringBone/SpringBoneTreeView.cs b/Packages/VRM10/Editor/Components/SpringBone/SpringBoneTreeView.cs index ee8bb9c55..f20bd5812 100644 --- a/Packages/VRM10/Editor/Components/SpringBone/SpringBoneTreeView.cs +++ b/Packages/VRM10/Editor/Components/SpringBone/SpringBoneTreeView.cs @@ -308,7 +308,7 @@ namespace UniVRM10 } #if UNITY_6000_5_OR_NEWER - static int GetControlId(Component component) => EntityId.ToULong(component.GetEntityId()).GetHashCode(); + static int GetControlId(Component component) => component.GetEntityId().GetHashCode(); #else static int GetControlId(Component component) => component.GetInstanceID(); #endif