소스 검색

curve : fixed wrong index buffer allocation

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7558 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
rem..om 14 년 전
부모
커밋
23c992b05b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      engine/src/core/com/jme3/scene/shape/Curve.java

+ 2 - 2
engine/src/core/com/jme3/scene/shape/Curve.java

@@ -122,7 +122,7 @@ public class Curve extends Mesh {
 
 
         this.setMode(Mesh.Mode.Lines);
         this.setMode(Mesh.Mode.Lines);
         this.setBuffer(VertexBuffer.Type.Position, 3, array);
         this.setBuffer(VertexBuffer.Type.Position, 3, array);
-        this.setBuffer(VertexBuffer.Type.Index, 3, indices);//(spline.getControlPoints().size() - 1) * nbSubSegments * 2
+        this.setBuffer(VertexBuffer.Type.Index, 2, indices);//(spline.getControlPoints().size() - 1) * nbSubSegments * 2
         this.updateBound();
         this.updateBound();
         this.updateCounts();
         this.updateCounts();
     }
     }
@@ -244,7 +244,7 @@ public class Curve extends Mesh {
 
 
         this.setMode(Mesh.Mode.Lines);
         this.setMode(Mesh.Mode.Lines);
         this.setBuffer(VertexBuffer.Type.Position, 3, array);
         this.setBuffer(VertexBuffer.Type.Position, 3, array);
-        this.setBuffer(VertexBuffer.Type.Index, (spline.getControlPoints().size() - 1) * 2, indices);
+        this.setBuffer(VertexBuffer.Type.Index, 2, indices);
         this.updateBound();
         this.updateBound();
         this.updateCounts();
         this.updateCounts();
     }
     }