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,22 +1,11 @@
return Def.ActorFrame {
InitCommand=function(self)
self:x(SCREEN_CENTER_X);
self:y(SCREEN_CENTER_Y);
end;
LoadFont("Common Normal") .. {
Text=ScreenString("GAME OVER");
InitCommand=function(self)
self:y(-4);
self:shadowlength(1);
self:diffuse(Color("Red"));
end;
};
LoadFont("Common Normal") .. {
Text=ScreenString("Play again soon!");
InitCommand=function(self)
self:y(16);
self:shadowlength(1);
self:zoom(0.5);
end;
};
return Def.ActorFrame {
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
LoadFont("Common Normal") .. {
Text=ScreenString("GAME OVER");
InitCommand=cmd(y,-4;shadowlength,1;diffuse,Color("Red"));
};
LoadFont("Common Normal") .. {
Text=ScreenString("Play again soon!");
InitCommand=cmd(y,16;shadowlength,1;zoom,0.5;);
};
};