From c75dd199a50adcf9f3add24af8d4810511f52dc0 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Fri, 29 Nov 2024 03:24:02 +0900 Subject: [PATCH] UseJob default true --- .../ClothWarp/Runtime/Components/ClothWarpRuntimeProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/VRM10_Samples/ClothSample/ClothWarp/Runtime/Components/ClothWarpRuntimeProvider.cs b/Assets/VRM10_Samples/ClothSample/ClothWarp/Runtime/Components/ClothWarpRuntimeProvider.cs index 9bfa68d8b..c90d025b7 100644 --- a/Assets/VRM10_Samples/ClothSample/ClothWarp/Runtime/Components/ClothWarpRuntimeProvider.cs +++ b/Assets/VRM10_Samples/ClothSample/ClothWarp/Runtime/Components/ClothWarpRuntimeProvider.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; using UnityEngine; -using UniVRM10; + namespace UniVRM10.ClothWarp.Components { @@ -17,7 +17,7 @@ namespace UniVRM10.ClothWarp.Components public List Cloths = new(); [SerializeField] - public bool UseJob; + public bool UseJob = true; IVrm10SpringBoneRuntime m_runtime; public IVrm10SpringBoneRuntime CreateSpringBoneRuntime()