comments and renaming for easier to read code

This commit is contained in:
Louis Hong
2024-10-30 22:24:30 -07:00
parent 14130b3987
commit 9d7304a436
5 changed files with 34 additions and 24 deletions

View File

@@ -158,11 +158,11 @@ public class FoundryOverlay3D extends Overlay
if (state.heatingCoolingState.isCooling())
{
drawHeatingCoolingOverlay(graphics, waterfall);
drawHeatChangerOverlay(graphics, waterfall);
}
if (state.heatingCoolingState.isHeating())
{
drawHeatingCoolingOverlay(graphics, lavaPool);
drawHeatChangerOverlay(graphics, lavaPool);
}
@@ -195,7 +195,7 @@ public class FoundryOverlay3D extends Overlay
modelOutlineRenderer.drawOutline(stageObject, config.borderThickness(), _color, config.borderFeather());
}
private void drawHeatingCoolingOverlay(
private void drawHeatChangerOverlay(
Graphics2D graphics,
GameObject stageObject
)