Files
itgmania212121/Themes/_fallback/BGAnimations/_wait.lua
T

6 lines
159 B
Lua
Raw Normal View History

2011-12-22 12:06:08 -06:00
local waitTime = ...
2011-12-27 20:49:07 -06:00
-- default to 1 second if parameter is missing
if not waitTime then waitTime = 1 end
2011-12-22 12:06:08 -06:00
return Def.Actor{ OnCommand=cmd(sleep,waitTime); };