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,19 @@
function on_xml_read()
RegisterScriptCallback("on_xml_read", function(xml_file_name, xml_obj)
if xml_file_name == [[ui\ui_hud.xml]]
then
local ratio = utils_xml.screen_ratio()
local res = xml_obj:query("indicators")
if res[1] then
local el = res[1]
xml_obj:setElementAttr(el, {x=208*ratio, y=728})
end
local res = xml_obj:query("belt")
if res[1] then
local el = res[1]
xml_obj:setElementAttr(el, {x=1024-156*ratio, y=742})
end
end
end)
end