hull 7
This commit is contained in:
@@ -111,27 +111,15 @@ public class NavigationManager {
|
||||
return false;
|
||||
}
|
||||
public static boolean pointIsBlocked(Vector3fImmutable point) {
|
||||
Zone zone = ZoneManager.findSmallestZone(point);
|
||||
if(zone != null){
|
||||
for(Path2D.Float obstacle : zone.navObstacles)
|
||||
if (obstacle.contains(point.x,point.z)) {
|
||||
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;
|
||||
//}
|
||||
//}
|
||||
Building building = BuildingManager.getBuildingAtLocation(point);
|
||||
if(building != null) {
|
||||
for (Path2D.Float mesh : building.meshes) {
|
||||
if (mesh.contains(point.x,point.z)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user