From 6559f232a387730e4e2d0e26a2dfd437faae6af8 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Fri, 20 Oct 2023 10:08:39 -0400 Subject: [PATCH] Dev command updated --- src/engine/devcmd/cmds/GetHeightCmd.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/engine/devcmd/cmds/GetHeightCmd.java b/src/engine/devcmd/cmds/GetHeightCmd.java index 6231f05a..01f43e6a 100644 --- a/src/engine/devcmd/cmds/GetHeightCmd.java +++ b/src/engine/devcmd/cmds/GetHeightCmd.java @@ -60,13 +60,13 @@ public class GetHeightCmd extends AbstractDevCmd { this.throwbackInfo(playerCharacter, "Grid : " + "[" + gridSquare.x + "]" + "[" + gridSquare.y + "]"); this.throwbackInfo(playerCharacter, "offset: " + "[" + childZoneOffset.x + "]" + "[" + childZoneOffset.y + "]"); this.throwbackInfo(playerCharacter, "Normalized offset: " + "[" + normalizedOffset.x + "]" + "[" + normalizedOffset.y + "]"); - this.throwbackInfo(playerCharacter, "Blend: " + heightmapZone.terrain.getTerrainBlendCoefficient(childZoneOffset)); + this.throwbackInfo(playerCharacter, "Blend coefficient: " + heightmapZone.terrain.getTerrainBlendCoefficient(childZoneOffset)); this.throwbackInfo(playerCharacter, "------------"); - this.throwbackInfo(playerCharacter, "Child Height: " + Math.ceil(childHeight)); - this.throwbackInfo(playerCharacter, "Parent Height : " + Math.ceil(parentHeight)); - this.throwbackInfo(playerCharacter, "Blended Height : " + Math.ceil(blendedHeight)); + this.throwbackInfo(playerCharacter, "Child Height at loc: " + Math.ceil(childHeight)); + this.throwbackInfo(playerCharacter, "Parent Height at loc: " + Math.ceil(parentHeight)); + this.throwbackInfo(playerCharacter, "Blended Height (Ceil): " + blendedHeight + " (" + Math.ceil(blendedHeight) + ")"); }