Starship/scripts/test.lua

8 lines
298 B
Lua
Raw Normal View History

function OnPlayUpdate(ev)
2025-03-10 14:51:11 -06:00
print("OnPlayUpdate 1")
-- HUD_LivesCount2_Draw(50.0, 50.0, 2);
RCP_AutoSetupDL(SetupDL.SETUPDL_76_POINT)
Graphics_DisplaySmallText(50, 50, 1.0, 1.0, "RUNNING FROM LUA");
end
2025-03-10 14:51:11 -06:00
RegisterListener(DrawLivesCounterHUDEventID, OnPlayUpdate, EventPriority.NORMAL)