Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/MarkupShaderGUI/Editor/MaterialPropertyDrawers/DrawerBase.cs

16 lines
314 B
C#
Raw Normal View History

2025-12-17 04:19:38 -05:00
#if UNITY_EDITOR
using UnityEditor;
namespace GraphicsCat.MarkupShaderGUIInternal
{
public class DrawerBase : MaterialPropertyDrawer
{
public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
{
return -2;
}
}
}
#endif