Files
itgmania212121/BackgroundEffects/StretchNormalAlignLeft.lua
T

12 lines
311 B
Lua
Raw Normal View History

2010-01-26 21:00:30 -06:00
-- Align left when cropping to 4:3.
2010-08-18 14:17:43 -05:00
local cColor1 = color(Var "Color1");
2010-01-26 21:00:30 -06:00
local t = Def.ActorFrame {
LoadActor(Var "File1") .. {
2010-08-28 15:54:00 -05:00
OnCommand=cmd(horizalign,left;scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,cColor1);
2010-01-26 21:00:30 -06:00
GainFocusCommand=cmd(play);
LoseFocusCommand=cmd(pause);
};
};
return t;