Files
Rage 376b4b9689 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.
2025-01-14 05:07:53 -05:00

19 lines
488 B
Plaintext

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