Files
itgmania212121/stepmania/BackgroundEffects/UpperLeft.lua
T

14 lines
245 B
Lua
Raw Normal View History

2007-02-10 23:39:38 +00:00
-- upper left corner
local Color = color(Var "Color1");
2007-05-20 18:23:27 +00:00
local t = Def.ActorFrame {
2007-02-10 23:39:38 +00:00
LoadActor(Var "File1") .. {
2007-03-22 00:04:37 +00:00
OnCommand=cmd(diffuse,Color;effectclock,"music");
2007-02-10 23:39:38 +00:00
GainFocusCommand=cmd(play);
LoseFocusCommand=cmd(pause);
};
};
2007-05-20 18:23:27 +00:00
return t;
2007-02-10 23:39:38 +00:00