Sfoglia il codice sorgente

Fixed indentation.

Reimund Järnfors 5 anni fa
parent
commit
cd6ef4db93
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/Meshes/mesh.ts

+ 1 - 1
src/Meshes/mesh.ts

@@ -2094,7 +2094,7 @@ export class Mesh extends AbstractMesh implements IGetSetVerticesData {
         let numBones: number = this.skeleton.bones.length;
         let matricesIndices = (<FloatArray>this.getVerticesData(VertexBuffer.MatricesIndicesKind));
         let matricesIndicesExtra = (<FloatArray>this.getVerticesData(VertexBuffer.MatricesIndicesExtraKind));
-		let numBadBoneIndices: number = 0;
+        let numBadBoneIndices: number = 0;
         for (var a = 0; a < numWeights; a += 4) {
             for (var b = 0; b < numInfluences; b++) {
                 let index = b < 4 ? matricesIndices[a + b] : matricesIndicesExtra[a + b - 4];