f257f19dad
I'd like to thank everyone who made this possible;, including but not limited to Riakodoadm, MrThatKid, kyzentun, Luizsan, JoseVarelaP, everyone else who provided feedback and bug reports.
15 lines
541 B
Lua
15 lines
541 B
Lua
local t = Def.ActorFrame{};
|
|
t[#t+1] = Def.Quad{
|
|
InitCommand=cmd(FullScreen;diffuse,color("1,0,0,0");blend,Blend.Multiply);
|
|
OnCommand=cmd(smooth,1;diffuse,color("0.75,0,0,0.75");decelerate,2;diffuse,color("0,0,0,1"));
|
|
};
|
|
t[#t+1] = Def.Quad{
|
|
InitCommand=cmd(FullScreen;diffuse,color("1,1,1,1");diffusealpha,0);
|
|
OnCommand=cmd(finishtweening;diffusealpha,1;decelerate,1.25;diffuse,color("1,0,0,0"));
|
|
};
|
|
t[#t+1] = LoadActor(THEME:GetPathS( Var "LoadingScreen", "failed" ) ) .. {
|
|
StartTransitioningCommand=cmd(play);
|
|
};
|
|
|
|
return t;
|