UILogin.OnShowEffectPlayOver C# (CSharp) Method

OnShowEffectPlayOver() public method

public OnShowEffectPlayOver ( ) : void
return void
    public override void OnShowEffectPlayOver()
    {
        base.OnShowEffectPlayOver();
		UIButton playBtn = GetChildComponent<UIButton>("PlayBtn");
		playBtn.GetComponent<UIEffectPlayer>().Delay = 0;
        UIWindowManager.Singleton.GetUIWindow<UIMainMenu>().ShowWindow();
    }