Files
itgmania212121/Themes/default/BGAnimations/ScreenGameplay danger all/default.lua
T

15 lines
317 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
Def.Quad{
2013-07-04 13:09:03 -04:00
InitCommand=function(self)
self:FullScreen();
self:diffuse(color("1,0,0,0"));
self:blend(Blend.Multiply);
end;
OnCommand=function(self)
self:smooth(1);
self:diffuse(color("0.75,0,0,0.75"));
self:decelerate(2);
self:diffuse(color("0,0,0,1"));
end;
2011-03-17 01:47:30 -04:00
};
2010-11-03 12:16:46 -07:00
};