fix comment space

This commit is contained in:
ousttrue 2024-10-08 17:13:25 +09:00
parent fc117b8332
commit 6087256d1f
2 changed files with 1 additions and 10 deletions

View File

@ -53,7 +53,7 @@ namespace UniGLTF.SpringBoneJobs
/// <summary>
/// バッファを再構築する
/// </summary>
private JobHandle ReconstructBuffers(JobHandle handle)
private JobHandle ReconstructBuffers(JobHandle handle)
{
Profiler.BeginSample("FastSpringBone.ReconstructBuffers");

View File

@ -13,18 +13,9 @@ namespace VRM.SpringBoneJobs
{
public static class FastSpringBoneReplacer
{
/// <summary>
/// - 指定された GameObject 内にある SpringBone を停止させる
/// - FastSpringBoneBuffer に変換する
/// </summary>
public static async Task<FastSpringBoneBuffer> MakeBufferAsync(GameObject root, IAwaitCaller awaitCaller = null, CancellationToken token = default)
{
var components = root.GetComponentsInChildren<VRMSpringBone>();
// foreach (var sb in components)
// {
// // 停止させて FastSpringBoneService から実行させる
// sb.m_updateType = VRMSpringBone.SpringBoneUpdateType.Manual;
// }
var springs = new FastSpringBoneSpring[components.Length];
for (int i = 0; i < components.Length; ++i)