Benjamin Guignabert 4 lat temu
rodzic
commit
9f58b43e01
1 zmienionych plików z 1 dodań i 1 usunięć
  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
     // Copies the bones transformation matrices into the target array and returns the target's reference
     private static _CopyBonesTransformationMatrices(source: Float32Array, target: Float32Array): Float32Array {
     private static _CopyBonesTransformationMatrices(source: Float32Array, target: Float32Array): Float32Array {
-        target.set(source)
+        target.set(source);
 
 
         return target;
         return target;
     }
     }