diff --git a/Assets/VRM10/Runtime/FastSpringBone/System/FastSpringBoneBufferCombiner.cs b/Assets/VRM10/Runtime/FastSpringBone/System/FastSpringBoneBufferCombiner.cs index 23361739a..b1b513c69 100644 --- a/Assets/VRM10/Runtime/FastSpringBone/System/FastSpringBoneBufferCombiner.cs +++ b/Assets/VRM10/Runtime/FastSpringBone/System/FastSpringBoneBufferCombiner.cs @@ -77,7 +77,7 @@ namespace UniVRM10.FastSpringBones.System for (var i = 0; i < _batchedBuffers.Length; ++i) { var length = _batchedBufferLogicSizes[i]; - if (!_batchedBuffers[i].IsDisposed) + if (!_batchedBuffers[i].IsDisposed && length > 0) { NativeArray.Copy(_logics, logicsIndex, _batchedBuffers[i].Logics, 0, length); }