///<summary> Show the tip box on the loading screen </summary> private void ShowTip(ref LoadingScreenObj aLoadingScreen) { SetTip(); if (m_TipText != "") { aLoadingScreen.ShowTipPox(m_TipText); } else { Debug.LogWarning("There's no tip available to show."); aLoadingScreen.HideTipBox(); } }
///<summary> Hide the tip box from the loading screen </summary> private void HideTip(ref LoadingScreenObj aLoadingScreen) { aLoadingScreen.HideTipBox(); m_TipText = ""; }