Some of default. Better break this up.

This commit is contained in:
Jason Felds
2013-07-04 13:09:03 -04:00
parent 986d510a88
commit 8833ab5bc6
59 changed files with 1548 additions and 970 deletions
@@ -1,11 +1,22 @@
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;);
};
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;
};
};