hull 7
This commit is contained in:
@@ -111,27 +111,15 @@ public class NavigationManager {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
public static boolean pointIsBlocked(Vector3fImmutable point) {
|
public static boolean pointIsBlocked(Vector3fImmutable point) {
|
||||||
Zone zone = ZoneManager.findSmallestZone(point);
|
|
||||||
if(zone != null){
|
Building building = BuildingManager.getBuildingAtLocation(point);
|
||||||
for(Path2D.Float obstacle : zone.navObstacles)
|
if(building != null) {
|
||||||
if (obstacle.contains(point.x,point.z)) {
|
for (Path2D.Float mesh : building.meshes) {
|
||||||
|
if (mesh.contains(point.x,point.z)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//Building building = BuildingManager.getBuildingAtLocation(point);
|
|
||||||
//if(building != null) {
|
|
||||||
//for (Path2D.Float mesh : building.meshes) {
|
|
||||||
//if (mesh.contains(point.x,point.z)) {
|
|
||||||
//return true;
|
|
||||||
//}
|
|
||||||
//}
|
|
||||||
//for (Regions region : building.getBounds().getRegions()) {
|
|
||||||
//if (region.isPointInPolygon(point))
|
|
||||||
//if (Math.abs(region.lerpY(point) - point.y) > stepHeight) // get the height distance between current height and target location height
|
|
||||||
//return true;
|
|
||||||
//}
|
|
||||||
//}
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user