Code cleanup

Mainly unneeded semicolons
This commit is contained in:
ListenerJubatus
2018-08-14 14:19:02 -06:00
parent f4c97e5970
commit 2dcf66223d
47 changed files with 484 additions and 481 deletions
@@ -15,26 +15,26 @@ return Def.ActorFrame {
Def.Quad {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT),
OnCommand=cmd(diffuse,color("#000000");),
OnCommand=cmd(diffuse,color("#000000")),
},
LoadActor("_diamond") .. {
InitCommand=cmd(diffusealpha,0;);
InitCommand=cmd(diffusealpha,0);
OnCommand=cmd(rotationz,0;zoom,1;sleep,1;diffusealpha,1;linear,3;zoom,1;diffusealpha,0);
};
LoadActor("_sound") .. {
OnCommand=cmd(queuecommand,"Sound";);
OnCommand=cmd(queuecommand,"Sound");
SoundCommand=cmd(play);
};
LoadActor(THEME:GetPathG("ScreenGameOver","gameover"))..{
OnCommand=cmd(zoomx,1.1;diffusealpha,0;sleep,1;decelerate,0.6;diffusealpha,1;zoomx,1;);
OnCommand=cmd(zoomx,1.1;diffusealpha,0;sleep,1;decelerate,0.6;diffusealpha,1;zoomx,1);
},
LoadFont("Common Condensed")..{
Text=ScreenString("Play again soon!");
InitCommand=cmd(y,68;shadowlength,2);
OnCommand=cmd(diffusealpha,0;sleep,3;linear,0.3;diffusealpha,1;);
OnCommand=cmd(diffusealpha,0;sleep,3;linear,0.3;diffusealpha,1);
},
}