noita_entangled_worlds/ew_api_example/module.lua

9 lines
162 B
Lua

local module = {}
function module.on_world_update()
if GameGetFrameNum() % 60 == 0 then
GamePrint("Hi from api example!")
end
end
return module