• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revision0515cf4cc6f903a0eddd29821144632a23fa9930 (tree)
Time2013-05-04 03:20:14
Authorremy.bouquet@gmail.com <remy.bouquet@gmai...>
Commiterremy.bouquet@gmail.com

Log Message

Fixed the number of components of the Line shape index buffer.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10589 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

Change Summary

Incremental Difference

--- a/engine/src/core/com/jme3/scene/shape/Line.java
+++ b/engine/src/core/com/jme3/scene/shape/Line.java
@@ -73,7 +73,7 @@ public class Line extends Mesh {
7373 setBuffer(Type.Normal, 3, new float[]{0, 0, 1,
7474 0, 0, 1});
7575
76- setBuffer(Type.Index, 3, new short[]{0, 1});
76+ setBuffer(Type.Index, 2, new short[]{0, 1});
7777
7878 updateBound();
7979 }