diff --git a/Assets/CurlNoise/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs b/Assets/CurlNoise/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs index 59791f5..8a916fd 100644 --- a/Assets/CurlNoise/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs +++ b/Assets/CurlNoise/PostProcessing/Editor/PropertyDrawers/MinDrawer.cs @@ -3,12 +3,12 @@ namespace UnityEditor.PostProcessing { - [CustomPropertyDrawer(typeof(MinAttribute))] + [CustomPropertyDrawer(typeof(UnityEngine.PostProcessing.MinAttribute))] sealed class MinDrawer : PropertyDrawer { public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) { - MinAttribute attribute = (MinAttribute)base.attribute; + UnityEngine.PostProcessing.MinAttribute attribute = (UnityEngine.PostProcessing.MinAttribute)base.attribute; if (property.propertyType == SerializedPropertyType.Integer) {