Benjamin Guignabert 4 年之前
父節點
當前提交
9f58b43e01
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Materials/materialHelper.ts

+ 1 - 1
src/Materials/materialHelper.ts

@@ -871,7 +871,7 @@ export class MaterialHelper {
 
     // Copies the bones transformation matrices into the target array and returns the target's reference
     private static _CopyBonesTransformationMatrices(source: Float32Array, target: Float32Array): Float32Array {
-        target.set(source)
+        target.set(source);
 
         return target;
     }