Procházet zdrojové kódy

Fixed a bug where attempting to collide with an empty mesh (0 vertices) would throw an exception rather than returning 0 results.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10643 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
Zer..om před 12 roky
rodič
revize
9b6bd1fdc4
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      engine/src/core/com/jme3/scene/Mesh.java

+ 4 - 0
engine/src/core/com/jme3/scene/Mesh.java

@@ -896,6 +896,10 @@ public class Mesh implements Savable, Cloneable {
                            BoundingVolume worldBound,
                            CollisionResults results){
 
+        if (getVertexCount() == 0) {
+            return 0;
+        }
+        
         if (collisionTree == null){
             createCollisionData();
         }