diff options
Diffstat (limited to 'Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs')
-rw-r--r-- | Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs deleted file mode 100644 index 24a38b3c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs +++ /dev/null @@ -1,31 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledSpaceDrawer : MaterialPropertyDrawer
- {
- public float space;
-
- public StyledSpaceDrawer(float space)
- {
- this.space = space;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, string label, MaterialEditor materialEditor)
- {
- //EditorGUI.DrawRect(position, new Color(0, 1, 0, 0.05f));
-
- //Material material = materialEditor.target as Material;
-
- GUILayout.Space(space);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
|