Skip to content

Commit

Permalink
fix comment space
Browse files Browse the repository at this point in the history
  • Loading branch information
ousttrue committed Oct 8, 2024
1 parent fc117b8 commit 6087256
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public JobHandle ReconstructIfDirty(JobHandle handle)
/// <summary>
/// バッファを再構築する
/// </summary>
private JobHandle ReconstructBuffers(JobHandle handle)
private JobHandle ReconstructBuffers(JobHandle handle)
{
Profiler.BeginSample("FastSpringBone.ReconstructBuffers");

Expand Down
9 changes: 0 additions & 9 deletions Assets/VRM/Runtime/SpringBone/Jobs/FastSpringBoneReplacer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6087256

Please sign in to comment.