Exemple #1
0
 protected void ShowDisplay()
 {
     if (_layout != null)
     {
         _layout.Draw();
     }
 }
Exemple #2
0
        protected void ShowDisplay()
        {
            if (_sceneWidgets != null)
            {
                _sceneWidgets.Draw();
            }

            Handles.BeginGUI();

            if (_sceneGUILayout != null)
            {
                _sceneGUILayout.Draw();
            }

            Handles.EndGUI();
        }