yl_template/globalsteps.lua

14 lines
211 B
Lua
Raw Normal View History

2021-08-15 01:45:54 +00:00
local timer = 0
local gs = function(dtime)
timer = timer + dtime
if timer <= yl_template.config.interval then
return
end
timer = 0
-- do stuff
end
minetest.register_globalstep(gs)