summaryrefslogtreecommitdiff
path: root/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs')
-rw-r--r--Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs45
1 files changed, 0 insertions, 45 deletions
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs
deleted file mode 100644
index 3850da2e..00000000
--- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledText))]
- public class StyledTextAttributeDrawer : PropertyDrawer
- {
- StyledText a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledText)attribute;
-
- GUIStyle styleLabel = new GUIStyle(EditorStyles.label)
- {
- richText = true,
- wordWrap = true
- };
-
- styleLabel.alignment = a.alignment;
-
- GUILayout.Space(a.top);
-
- if (a.disabled == true)
- {
- GUI.enabled = false;
- }
-
- GUILayout.Label(property.stringValue, styleLabel);
-
- GUI.enabled = true;
-
- GUILayout.Space(a.down);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
-