Files
itgmania212121/stepmania/BackgroundEffects/StretchRewind.lua
T

13 lines
260 B
Lua
Raw Normal View History

2007-02-10 23:39:38 +00:00
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(scale_or_crop_background;diffuse,Color;position,0;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