Add Auto-Highlight Option to Large Monster UI

This commit is contained in:
GreenComfyTea
2022-07-28 16:27:58 +03:00
parent 90fba51cd5
commit a66ff49c49
13 changed files with 184 additions and 57 deletions

View File

@@ -2952,6 +2952,11 @@ function config.init()
anchor = "Top-Right"
},
auto_highlight = {
enabled = false,
mode = "Closest"
},
monster_name_label = {
visibility = true,
text = "%s",
@@ -4487,4 +4492,4 @@ function config.init_module()
end
return config;
return config;

View File

@@ -399,7 +399,16 @@ language.default_language = {
style = "Style",
inside = "Inside",
outside = "Outside",
center = "Center"
center = "Center",
auto_highlight = "Auto-highlight",
mode = "Mode",
closest = "Closest",
farthest = "Farthest",
lowest_health = "Lowest Health",
highest_health = "Highest Health",
lowest_health_percentage = "Lowest Health Percentage",
highest_health_percentage = "Highest Health Percentage"
}
};