DevCmd output updated

This commit is contained in:
2023-09-17 13:08:51 -04:00
parent 3fb08ca2c3
commit f18acf3e68
+6 -3
View File
@@ -56,17 +56,20 @@ public class GetHeightCmd extends AbstractDevCmd {
this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight); this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight);
this.throwbackInfo(playerCharacter, "------------"); this.throwbackInfo(playerCharacter, "------------");
this.throwbackInfo(playerCharacter, "Min: " + heightmapZone.getHeightMap().zone_maxBlend + " Max: " + heightmapZone.getHeightMap().zone_maxBlend);
if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.maxBlend)) { if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.maxBlend)) {
this.throwbackInfo(playerCharacter, "Blend: Max / Child"); this.throwbackInfo(playerCharacter, "Blend: Max (Child)");
return; return;
} }
if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.minBlend)) { if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.minBlend)) {
this.throwbackInfo(playerCharacter, "Blend: Min / LERP"); this.throwbackInfo(playerCharacter, "Blend: Min (LERP)");
return; return;
} }
this.throwbackInfo(playerCharacter, "Blend: None / Parent"); this.throwbackInfo(playerCharacter, "Blend: None (Parent)");
} }