Example #1
0
        void CreateGUI()
        {
            DestroyGUI();

            guiExampleControl = new GUIExampleControl();
            renderTargetUserControl1.ControlManager.Controls.Add(guiExampleControl);
        }
Example #2
0
 void DestroyGUI()
 {
     if (guiExampleControl != null)
     {
         guiExampleControl.SetShouldDetach();
         guiExampleControl = null;
     }
 }
Example #3
0
		void DestroyGUI()
		{
			if( guiExampleControl != null )
			{
				guiExampleControl.SetShouldDetach();
				guiExampleControl = null;
			}
		}
Example #4
0
		void CreateGUI()
		{
			DestroyGUI();

			guiExampleControl = new GUIExampleControl();
			renderTargetUserControl1.ControlManager.Controls.Add( guiExampleControl );
		}