This commit is contained in:
Karli
2025-10-12 21:43:27 +03:00
parent 9324c7f55c
commit ce480a1185
5 changed files with 490 additions and 115 deletions

View File

@@ -190,6 +190,22 @@ public interface EasyGiantsFoundryConfig extends Config
return true;
}
@Range(
min = 100,
max = 200
)
@ConfigItem(
keyName = "clickboxScale",
name = "Clickbox scale %",
description = "Scale clickbox highlights to make targets easier to click.",
position = 4,
section = highlightList
)
default int clickboxScale()
{
return 150;
}
@ConfigItem(
keyName = "waterLavaHighlight",
name = "Highlight Waterfall/Lava Pool",
@@ -353,6 +369,42 @@ public interface EasyGiantsFoundryConfig extends Config
return false;
}
@ConfigItem(
keyName = "heatDelta",
name = "Heat change",
description = "Show the heat delta and recommended location for the next adjust.",
position = 7,
section = infoPanelList
)
default boolean drawHeatDelta()
{
return true;
}
@ConfigItem(
keyName = "heatPlan",
name = "Heat plan",
description = "Show fast/slow heat action plans with predicted results.",
position = 8,
section = infoPanelList
)
default boolean drawHeatPlan()
{
return true;
}
@ConfigItem(
keyName = "heatActionTimer",
name = "Heat action timer",
description = "Show the active heat action countdown in the info panel.",
position = 9,
section = infoPanelList
)
default boolean drawHeatActionTimer()
{
return true;
}
@ConfigSection(
name = "Info Overlay",
description = "Overlay Text Info On Objects",