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

8 lines
123 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local time = ...
if not time then time = 1.0 end
2013-07-02 20:28:29 -04:00
return Def.Actor{
OnCommand=function(self)
self:sleep(time);
end;
};