12 lines
228 B
Lua
12 lines
228 B
Lua
return Def.ActorFrame{
|
|
Def.Quad{
|
|
InitCommand=function(self)
|
|
self:FullScreen();
|
|
self:diffuse(color("0,0,0,1"));
|
|
end;
|
|
OnCommand=function(self)
|
|
self:decelerate(0.5);
|
|
self:diffusealpha(0);
|
|
end;
|
|
};
|
|
}; |