Esempio n. 1
0
 protected override bool DrawWizardGUI()
 {
     prune               = EditorGUILayout.Toggle(new GUIContent("Prune", "Prune all unreachable objects from the object database"), prune);
     commitOnSuccess     = EditorGUILayout.Toggle(new GUIContent("Commit on success"), commitOnSuccess);
     fastForwardStrategy = (FastForwardStrategy)EditorGUILayout.EnumPopup(new GUIContent("Fast Forward Strategy"), fastForwardStrategy);
     mergeFileFavor      = (ConflictMergeType)EditorGUILayout.EnumPopup(new GUIContent("File Merge Favor"), mergeFileFavor);
     return(false);
 }
Esempio n. 2
0
 protected override bool DrawWizardGUI()
 {
     GUILayout.Label(new GUIContent("Fetch Settings:"), "ProjectBrowserHeaderBgMiddle");
     base.DrawWizardGUI();
     prune = EditorGUILayout.Toggle(new GUIContent("Prune", "Prune all unreachable objects from the object database"), prune);
     GUILayout.Label(new GUIContent("Merge Settings:"), "ProjectBrowserHeaderBgMiddle");
     prune               = EditorGUILayout.Toggle(new GUIContent("Prune", "Prune all unreachable objects from the object database"), prune);
     commitOnSuccess     = EditorGUILayout.Toggle(new GUIContent("Commit on success"), commitOnSuccess);
     fastForwardStrategy = (FastForwardStrategy)EditorGUILayout.EnumPopup(new GUIContent("Fast Forward Strategy"), fastForwardStrategy);
     mergeFileFavor      = (ConflictMergeType)EditorGUILayout.EnumPopup(new GUIContent("File Merge Favor"), mergeFileFavor);
     return(false);
 }