public void ShowUIContainer(string _UIContainerKey, OpenUIContainerSettings _openingSettins)
        {
            UIContainer c = GameManager.Instance.UIModule.GetUIContainerByKey(_UIContainerKey);

            if (c)
            {
                c.Show();
            }
            else
            {
                Debug.LogWarningFormat("UIContainer with key {0} not found as child of UIRoot.", _UIContainerKey);
            }
        }
Esempio n. 2
0
 /// <summary>
 /// Show container.
 /// </summary>
 /// <param name="_UIContainerKey"></param>
 /// <param name="_withBreadcrumbs"></param>
 public void ShowUIContainer(string _UIContainerKey, OpenUIContainerSettings _openingSettins = null)
 {
     ConcreteModuleImplementation.ShowUIContainer(_UIContainerKey, _openingSettins);
 }