public void ContinueButtonOnClickHandler() { GameClient.Get <ISoundManager>() .PlaySound(Enumerators.SoundType.CLICK, Constants.SfxSoundVolume, false, false, true); PopupHiding?.Invoke(); _uiManager.HidePopup <OverlordAbilitySelectionPopup>(); }
public void Hide() { PopupHiding?.Invoke(); if (Self == null) { return; } Self.SetActive(false); Object.Destroy(Self); Self = null; }
public void Hide() { PopupHiding?.Invoke(); GameClient.Get <ICameraManager>().FadeOut(null, 1); if (Self == null) { return; } Self.SetActive(false); Object.Destroy(Self); Self = null; }