void DrawColorControl(string name, ref Color value, ColorPicker.OnColorChanged onColorChanged) { GUILayout.BeginHorizontal(); GUILayout.Label(name); GUILayout.FlexibleSpace(); GUIControls.ColorField(name, "", ref value, 0.0f, null, true, true, onColorChanged); GUILayout.EndHorizontal(); }
private Color DrawColorControl(string name, Color value) { GUILayout.BeginHorizontal(); GUILayout.Label(name); GUILayout.FlexibleSpace(); var newColor = GUIControls.CustomValueField(name, string.Empty, GUIControls.PresentColor, value); GUILayout.EndHorizontal(); return(newColor); }
void DrawExpandedHeader() { GUILayout.BeginHorizontal(); GUILayout.Label("Log message format:", GUILayout.ExpandWidth(false)); config.consoleFormatString = GUILayout.TextField(config.consoleFormatString, GUILayout.ExpandWidth(true)); GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); GUILayout.Label("Max items in history:", GUILayout.ExpandWidth(false)); GUIControls.IntField("ConsoleMaxItemsInHistory", "", ref config.consoleMaxHistoryLength, 0.0f, true, true); GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); GUILayout.Label("Show console on:", GUILayout.ExpandWidth(false)); GUILayout.FlexibleSpace(); GUILayout.Label("Message", GUILayout.ExpandWidth(false)); config.showConsoleOnMessage = GUILayout.Toggle(config.showConsoleOnMessage, "", GUILayout.ExpandWidth(false)); GUILayout.FlexibleSpace(); GUILayout.Label("Warning", GUILayout.ExpandWidth(false)); config.showConsoleOnWarning = GUILayout.Toggle(config.showConsoleOnWarning, "", GUILayout.ExpandWidth(false)); GUILayout.FlexibleSpace(); GUILayout.Label("Error", GUILayout.ExpandWidth(false)); config.showConsoleOnError = GUILayout.Toggle(config.showConsoleOnError, "", GUILayout.ExpandWidth(false)); GUILayout.FlexibleSpace(); GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); GUILayout.Label("Auto-scroll on new messages:"); config.consoleAutoScrollToBottom = GUILayout.Toggle(config.consoleAutoScrollToBottom, ""); GUILayout.FlexibleSpace(); GUILayout.EndHorizontal(); GUILayout.BeginHorizontal(); if (GUILayout.Button("▲", GUILayout.ExpandWidth(false))) { headerExpanded = false; RecalculateAreas(); } GUILayout.Label("Hide console configuration"); GUILayout.FlexibleSpace(); if (GUILayout.Button("Save")) { ModTools.Instance.SaveConfig(); } if (GUILayout.Button("Reset")) { var template = new Configuration(); config.consoleMaxHistoryLength = template.consoleMaxHistoryLength; config.consoleFormatString = template.consoleFormatString; config.showConsoleOnMessage = template.showConsoleOnMessage; config.showConsoleOnWarning = template.showConsoleOnWarning; config.showConsoleOnError = template.showConsoleOnError; ModTools.Instance.SaveConfig(); } if (GUILayout.Button("Clear", GUILayout.ExpandWidth(false))) { lock (historyLock) { history.Clear(); } } GUILayout.EndHorizontal(); }
void DoWatchesWindow() { watchesScroll = GUILayout.BeginScrollView(watchesScroll); foreach (var watch in watches.ToArray()) { GUILayout.BeginHorizontal(); var type = GetWatchType(watch); GUI.contentColor = config.typeColor; GUILayout.Label(type.ToString()); GUI.contentColor = config.nameColor; GUILayout.Label(watch.ToString()); GUI.contentColor = Color.white; GUILayout.Label(" = "); GUI.enabled = false; var value = watch.Evaluate(); GUI.contentColor = config.valueColor; if (value == null || !TypeUtil.IsSpecialType(type)) { GUILayout.Label(value == null ? "null" : value.ToString()); } else { try { GUIControls.EditorValueField(watch, "watch." + watch, type, value); } catch (Exception) { GUILayout.Label(value == null ? "null" : value.ToString()); } } GUI.contentColor = Color.white; GUI.enabled = true; GUILayout.FlexibleSpace(); if (GUILayout.Button("Find in Scene Explorer")) { var sceneExplorer = FindObjectOfType <SceneExplorer>(); sceneExplorer.ExpandFromRefChain(watch.Trim(watch.Length - 1)); sceneExplorer.visible = true; } if (GUILayout.Button("Find in Resources Explorer")) { var sceneExplorer = FindObjectOfType <ResourcesExplorer>(); sceneExplorer.ExpandFromRefChain(watch.Trim(watch.Length - 1)); sceneExplorer.visible = true; } if (GUILayout.Button("x", GUILayout.Width(24))) { RemoveWatch(watch); } GUILayout.EndHorizontal(); } GUILayout.EndScrollView(); }
void DoWatchesWindow() { watchesScroll = GUILayout.BeginScrollView(watchesScroll); foreach (var watch in GetWatches()) { GUILayout.BeginHorizontal(); var type = GetWatchType(watch); GUI.contentColor = config.typeColor; GUILayout.Label(type.ToString()); GUI.contentColor = config.nameColor; GUILayout.Label(watch.ToString()); GUI.contentColor = Color.white; GUILayout.Label(" = "); if (IsConstWatch(watch)) { GUI.enabled = false; } var value = ReadWatch(watch); GUI.contentColor = config.valueColor; if (value == null || !TypeUtil.IsBuiltInType(type)) { GUILayout.Label(value == null ? "null" : value.ToString()); } else { try { var newValue = GUIControls.EditorValueField(watch, "watch." + watch, type, value); if (newValue != value) { WriteWatch(watch, newValue); } } catch (Exception) { GUILayout.Label(value == null ? "null" : value.ToString()); } } GUI.contentColor = Color.white; GUI.enabled = true; GUILayout.FlexibleSpace(); if (GUILayout.Button("x", GUILayout.Width(24))) { RemoveWatch(watch); } GUILayout.EndHorizontal(); } GUILayout.EndScrollView(); }