Browse Source

Blend cleanup

magicbox-1.5.2
MagicBot 1 year ago
parent
commit
f7952008cd
  1. 4
      src/engine/InterestManagement/Terrain.java
  2. 2
      src/engine/devcmd/cmds/GetHeightCmd.java

4
src/engine/InterestManagement/Terrain.java

@ -113,7 +113,7 @@ public class Terrain { @@ -113,7 +113,7 @@ public class Terrain {
// Blend between heights
return interpolatedChildHeight + interpolatedParentTerrainHeight * (1 - terrainZone.terrain.heightBlend(terrainLoc));
return interpolatedChildHeight + interpolatedParentTerrainHeight * (1 - terrainZone.terrain.terrainBlend(terrainLoc));
}
@ -179,7 +179,7 @@ public class Terrain { @@ -179,7 +179,7 @@ public class Terrain {
return interpolatedHeight;
}
public float heightBlend(Vector2f terrainLoc) {
public float terrainBlend(Vector2f terrainLoc) {
// Normalize terrain loc

2
src/engine/devcmd/cmds/GetHeightCmd.java

@ -47,7 +47,7 @@ public class GetHeightCmd extends AbstractDevCmd { @@ -47,7 +47,7 @@ public class GetHeightCmd extends AbstractDevCmd {
this.throwbackInfo(playerCharacter, "Global Height: " + heightmapZone.worldAltitude);
this.throwbackInfo(playerCharacter, "Sea Level: " + heightmapZone.seaLevel);
this.throwbackInfo(playerCharacter, "Grid : " + Math.floor(gridSquare.x) + "x" + Math.floor(gridSquare.y));
this.throwbackInfo(playerCharacter, "Blend: " + heightmapZone.terrain.heightBlend(zoneLoc));
this.throwbackInfo(playerCharacter, "Blend: " + heightmapZone.terrain.terrainBlend(zoneLoc));
this.throwbackInfo(playerCharacter, "Height returned: " + Math.ceil(currentHeight));
this.throwbackInfo(playerCharacter, "------------");

Loading…
Cancel
Save