ソースを参照

removed some debug code

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9128 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
bre..ns 14 年 前
コミット
230398c45b

+ 1 - 1
engine/src/terrain/com/jme3/terrain/geomipmap/LODGeomap.java

@@ -1063,7 +1063,7 @@ public class LODGeomap extends GeoMap {
     protected Triangle getTriangleAtPoint(float x, float z) {
         Triangle[] triangles = getGridTrianglesAtPoint(x, z);
         if (triangles == null) {
-            System.out.println("x,z: " + x + "," + z);
+            //System.out.println("x,z: " + x + "," + z);
             return null;
         }
         Vector2f point = new Vector2f(x, z);