Пример #1
0
 void DrawOrientationManagerButton(float width)
 {
     if (!UIManager.useOrientationManager)
     {
         return;
     }
     if (QUI.GhostButton("Add Orientation Manager to Scene", QColors.Color.Gray, width, 18))
     {
         OrientationManager.AddOrientationManagerToScene();
     }
 }
Пример #2
0
 void DrawOrientationManagerButton()
 {
     if (!UIManager.useOrientationManager)
     {
         return;
     }
     QUI.BeginHorizontal(WIDTH_420);
     {
         if (QUI.Button("Add Orientation Manager to Scene"))
         {
             OrientationManager.AddOrientationManagerToScene();
         }
     }
     QUI.EndHorizontal();
     QUI.Space(SPACE_2);
 }