From d6dae03e7e9fd7466f67bab719c783c9e994e945 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 15 Jan 2012 20:23:03 -0600 Subject: [PATCH] don't show Ready or Go when online; the steps begin immediately. --- Themes/default/BGAnimations/ScreenGameplay go/default.lua | 5 +++++ Themes/default/BGAnimations/ScreenGameplay ready/default.lua | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Themes/default/BGAnimations/ScreenGameplay go/default.lua b/Themes/default/BGAnimations/ScreenGameplay go/default.lua index fd86e61752..e9b1a6b5e8 100644 --- a/Themes/default/BGAnimations/ScreenGameplay go/default.lua +++ b/Themes/default/BGAnimations/ScreenGameplay go/default.lua @@ -1,3 +1,8 @@ +if IsNetSMOnline() then + -- don't show "Ready" online; it will obscure the immediately-starting steps. + return Def.ActorFrame{} +end + return LoadActor("go") .. { InitCommand=cmd(Center;draworder,105); StartTransitioningCommand=cmd(zoom,1.3;diffusealpha,0;bounceend,0.25;zoom,1;diffusealpha,1;linear,0.15;glow,BoostColor(Color("Blue"),1.75);decelerate,0.3;glow,1,1,1,0;sleep,1-0.45;linear,0.25;diffusealpha,0;); diff --git a/Themes/default/BGAnimations/ScreenGameplay ready/default.lua b/Themes/default/BGAnimations/ScreenGameplay ready/default.lua index 319f417f2d..73c513579a 100644 --- a/Themes/default/BGAnimations/ScreenGameplay ready/default.lua +++ b/Themes/default/BGAnimations/ScreenGameplay ready/default.lua @@ -1,3 +1,8 @@ +if IsNetSMOnline() then + -- don't show "Ready" online; it will obscure the immediately-starting steps. + return Def.ActorFrame{} +end + return LoadActor("ready") .. { InitCommand=cmd(Center;draworder,105); StartTransitioningCommand=cmd(zoom,1.3;diffusealpha,0;bounceend,0.25;zoom,1;diffusealpha,1;linear,0.15;glow,BoostColor(Color("Orange"),1.75);decelerate,0.3;glow,1,1,1,0;sleep,1-0.45;linear,0.25;diffusealpha,0;);