public void OnPointerExit(PointerEventData eventData) { if (!(m_tooltip == null)) { m_tooltip.Hide(); } }
public static void HideTooltip() { if (null == s_instance) { Log.Error("HideTooltip called while no instance exists.", 316, "C:\\BuildAgents\\AgentB\\work\\cub_client_win64_develop\\client\\DofusCube.Unity\\Assets\\Core\\Code\\UI\\FightRework\\FightUIRework.cs"); return; } FightTooltip fightTooltip = s_instance.m_fightTooltip; if (!(null == fightTooltip)) { fightTooltip.Hide(); } }
public unsafe IEnumerator GotoSelectMode() { if (m_inEdition) { m_inEdition = false; Sequence val = DOTween.Sequence(); TweenSettingsExtensions.Insert(val, 0f, DOTweenModuleUI.DOFade(m_mainCanvasGroup, 0f, 0.2f)); TweenSettingsExtensions.Insert(val, 0f, m_deck.LeaveEditMode()); TweenSettingsExtensions.Insert(val, 0f, m_editModeUI.Hide()); m_closeCanvas.Invoke(); m_inputBlocker.SetActive(false); TweenSettingsExtensions.InsertCallback(val, TweenExtensions.Duration(val, true), new TweenCallback((object)this, (IntPtr)(void *) /*OpCode not supported: LdFtn*/)); m_isOpen = false; m_fightTooltip.Hide(); yield return(TweenExtensions.WaitForKill(val)); } }
private void HidePedestalInfos() { m_pedestalSpellAbilityBGCanvasGroup.get_gameObject().SetActive(false); m_pedestalSpellAbilityMainCanvasGroup.get_gameObject().SetActive(false); m_fightTooltip.Hide(); }