Revert "Some of default. Better break this up."
This reverts commit 8833ab5bc6.
This commit is contained in:
@@ -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;);
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user