Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,25 @@
-- Customize to your liking.
local mag_bars_custom = true
local mag_bars_background = true
local mag_bars_color = GetARGB(255, 200, 200, 200)
-- Stop customizing.
local Base_Add_ProgressBar = utils_ui.UICellItem.Add_ProgressBar
local is_magazine = magazine_binder.is_magazine
utils_ui.UICellItem.Add_ProgressBar = function(sender, xml, obj, sec, clsid)
Base_Add_ProgressBar(sender, xml, obj, sec, clsid)
if mag_bars_custom and sender.bar and is_magazine(sec) then
sender.bar:ShowBackground(mag_bars_background)
sender.bar:SetColor(mag_bars_color)
end
end
local vanilla_bar_list_for_reference_not_used_here = {
["condition_progess_bar"] = {min = {255, 196, 18, 18, 0}, mid = {255, 255, 255, 118, 0.5}, max = {255, 107, 207, 119, 1}, background = true},
["power_progess_bar"] = {def = GetARGB(255, 86, 196, 209), background = true},
["uses_progess_bar"] = {def = GetARGB(255, 255, 255, 255), background = false}
}