Browse Source

Dev command updated

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

2
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 - parentZone.terrain.heightBlend(parentLoc));
return interpolatedChildHeight + interpolatedParentTerrainHeight * (1 - terrainZone.terrain.heightBlend(terrainLoc));
}

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

@ -47,6 +47,7 @@ public class GetHeightCmd extends AbstractDevCmd { @@ -47,6 +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, "Height returned: " + Math.ceil(currentHeight));
this.throwbackInfo(playerCharacter, "------------");

Loading…
Cancel
Save