Revert "Some of default. Better break this up."

This reverts commit 8833ab5bc6.
This commit is contained in:
Jason Felds
2013-07-18 17:43:31 -04:00
parent 6120a8a5e4
commit dc5d6a932d
59 changed files with 970 additions and 1548 deletions
@@ -1,31 +1,16 @@
local t = Def.ActorFrame{};
t[#t+1] = LoadActor("_badge") .. {
InitCommand=function(self)
self:shadowlength(1);
self:diffuse(Color.Green);
self:pulse();
self:effectmagnitude(0.875, 1, 1);
self:effecttiming(0, 0, 1, 0);
self:effectclock('beatnooffset');
self:effectperiod(2);
end;
InitCommand=cmd(shadowlength,1;diffuse,Color.Green;pulse;effectmagnitude,0.875,1,1;effecttiming,0,0,1,0
effectclock,'beatnooffset';effectperiod,2);
};
t[#t+1] = Def.Quad {
InitCommand=function(self)
self:zoomto(40, 20);
self:diffuse(Color.Black);
self:diffusealpha(0.5);
self:fadeleft(0.25);
self:faderight(0.25);
end;
InitCommand=cmd(zoomto,40,20;diffuse,Color.Black;
diffusealpha,0.5;fadeleft,0.25;faderight,0.25);
};
t[#t+1] = LoadFont("Common","Normal") .. {
Text="AG";
InitCommand=function(self)
self:shadowlength(1);
self:zoom(0.875);
end;
InitCommand=cmd(shadowlength,1;zoom,0.875);
};
return t;