case3
This commit is contained in:
154
Assets/ThirdParty/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs
vendored
Normal file
154
Assets/ThirdParty/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
// Cristian Pop - https://boxophobic.com/
|
||||
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
using Boxophobic.Constants;
|
||||
|
||||
namespace Boxophobic.StyledGUI
|
||||
{
|
||||
public partial class StyledGUI
|
||||
{
|
||||
public static void DrawInspectorBanner(Color color, string title)
|
||||
{
|
||||
GUILayout.Space(10);
|
||||
|
||||
var fullRect = GUILayoutUtility.GetRect(0, 0, 36, 0);
|
||||
var fillRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 36);
|
||||
var lineRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 1);
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
color = new Color(color.r, color.g, color.b, 1f);
|
||||
}
|
||||
else
|
||||
{
|
||||
color = Constant.ColorLightGray;
|
||||
}
|
||||
|
||||
EditorGUI.DrawRect(fillRect, color);
|
||||
EditorGUI.DrawRect(lineRect, Constant.LineColor);
|
||||
|
||||
Color guiColor = Constant.ColorDarkGray;
|
||||
|
||||
GUI.Label(fullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + title + "</color></size>", Constant.TitleStyle);
|
||||
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
public static void DrawInspectorBanner(string title)
|
||||
{
|
||||
GUILayout.Space(10);
|
||||
|
||||
var fullRect = GUILayoutUtility.GetRect(0, 0, 36, 0);
|
||||
var fillRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 36);
|
||||
var lineRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 1);
|
||||
|
||||
Color color;
|
||||
Color guiColor;
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
color = Constant.ColorDarkGray;
|
||||
guiColor = Constant.ColorLightGray;
|
||||
}
|
||||
else
|
||||
{
|
||||
color = Constant.ColorLightGray;
|
||||
guiColor = Constant.ColorDarkGray;
|
||||
}
|
||||
|
||||
EditorGUI.DrawRect(fillRect, color);
|
||||
EditorGUI.DrawRect(lineRect, Constant.LineColor);
|
||||
|
||||
GUI.Label(fullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + title + "</color></size>", Constant.TitleStyle);
|
||||
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
public static void DrawInspectorBanner(Color color, string title, string subtitle)
|
||||
{
|
||||
GUIStyle titleStyle = new GUIStyle("label")
|
||||
{
|
||||
richText = true,
|
||||
alignment = TextAnchor.MiddleCenter
|
||||
};
|
||||
|
||||
GUIStyle subTitleStyle = new GUIStyle("label")
|
||||
{
|
||||
richText = true,
|
||||
alignment = TextAnchor.MiddleRight
|
||||
};
|
||||
|
||||
GUILayout.Space(10);
|
||||
|
||||
var fullRect = GUILayoutUtility.GetRect(0, 0, 36, 0);
|
||||
var fillRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 36);
|
||||
var subRect = new Rect(0, fullRect.position.y, fullRect.xMax - 5, 36);
|
||||
var lineRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 1);
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
color = new Color(color.r, color.g, color.b, 1f);
|
||||
}
|
||||
else
|
||||
{
|
||||
color = Constant.ColorLightGray;
|
||||
}
|
||||
|
||||
EditorGUI.DrawRect(fillRect, color);
|
||||
EditorGUI.DrawRect(lineRect, Constant.LineColor);
|
||||
|
||||
Color guiColor = Constant.ColorDarkGray;
|
||||
|
||||
GUI.Label(fullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + title + "</color></size>", titleStyle);
|
||||
GUI.Label(subRect, "<b><size=11><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + subtitle + "</color></size></b>", subTitleStyle);
|
||||
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
public static void DrawInspectorBanner(string title, string subtitle)
|
||||
{
|
||||
GUIStyle titleStyle = new GUIStyle("label")
|
||||
{
|
||||
richText = true,
|
||||
alignment = TextAnchor.MiddleCenter
|
||||
};
|
||||
|
||||
GUIStyle subTitleStyle = new GUIStyle("label")
|
||||
{
|
||||
richText = true,
|
||||
alignment = TextAnchor.MiddleRight
|
||||
};
|
||||
|
||||
GUILayout.Space(10);
|
||||
|
||||
var fullRect = GUILayoutUtility.GetRect(0, 0, 36, 0);
|
||||
var fillRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 36);
|
||||
var subRect = new Rect(0, fullRect.position.y, fullRect.xMax - 5, 36);
|
||||
var lineRect = new Rect(0, fullRect.position.y, fullRect.xMax + 3, 1);
|
||||
|
||||
Color color;
|
||||
Color guiColor;
|
||||
|
||||
if (EditorGUIUtility.isProSkin)
|
||||
{
|
||||
color = Constant.ColorDarkGray;
|
||||
guiColor = Constant.ColorLightGray;
|
||||
}
|
||||
else
|
||||
{
|
||||
color = Constant.ColorLightGray;
|
||||
guiColor = Constant.ColorDarkGray;
|
||||
}
|
||||
|
||||
EditorGUI.DrawRect(fillRect, color);
|
||||
EditorGUI.DrawRect(lineRect, Constant.LineColor);
|
||||
|
||||
GUI.Label(fullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + title + "</color></size>", titleStyle);
|
||||
GUI.Label(subRect, "<b><size=11><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + subtitle + "</color></size></b>", subTitleStyle);
|
||||
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user