load mesh data and structure meshes
This commit is contained in:
@@ -23,7 +23,7 @@ public class Mesh {
|
|||||||
public boolean MeshCollides(Line2D line, float charHeight, float charY){
|
public boolean MeshCollides(Line2D line, float charHeight, float charY){
|
||||||
|
|
||||||
//check if movement path intersects this mesh
|
//check if movement path intersects this mesh
|
||||||
if(!this.BoundsCollides(line))
|
if(!this.BoundsCollides(line) && !boundsRect.contains(line.getP1()) && !boundsRect.contains(line.getP2()))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user