From c19ec913cb36c9452a35ea467169a939e4e8d22c Mon Sep 17 00:00:00 2001 From: MagicBot Date: Thu, 21 Sep 2023 14:39:37 -0400 Subject: [PATCH] Disable blend until after refactor. --- src/engine/InterestManagement/HeightMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/InterestManagement/HeightMap.java b/src/engine/InterestManagement/HeightMap.java index a00524bd..217acd23 100644 --- a/src/engine/InterestManagement/HeightMap.java +++ b/src/engine/InterestManagement/HeightMap.java @@ -237,12 +237,12 @@ public class HeightMap { // Heightmap blending is based on distance to edge of zone. - if (Bounds.collide(worldLoc, heightMapZone.blendBounds) == true) + // if (Bounds.collide(worldLoc, heightMapZone.blendBounds) == true) return interpolatedTerrainHeight; // We will need the parent height if we got this far into the method - return interpolatePLANAR(worldLoc, heightMapZone, zoneLoc, interpolatedTerrainHeight); + // return interpolatePLANAR(worldLoc, heightMapZone, zoneLoc, interpolatedTerrainHeight); }