Advertisement
Guest User

Untitled

a guest
Oct 25th, 2023
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. public class HelpBoxAttribute : PropertyAttribute
  2. {
  3. public readonly string text;
  4. public readonly MessageType type;
  5. public readonly bool onlyShowWhenDefaultValue;
  6. public readonly bool inverse;
  7.  
  8. public HelpBoxAttribute(string text, MessageType type = MessageType.Info, bool onlyShowWhenDefaultValue = false,
  9. bool inverse = false)
  10. {
  11. this.text = text;
  12. this.type = type;
  13. this.onlyShowWhenDefaultValue = onlyShowWhenDefaultValue;
  14. this.inverse = inverse;
  15. }
  16. }
  17.  
  18. [CustomPropertyDrawer(typeof(HelpBoxAttribute))]
  19. public class HelpBoxDrawer : PropertyDrawer
  20. {
  21. public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
  22. {
  23. EditorGUI.PropertyField(position, property, label, true);
  24.  
  25. HelpBoxAttribute helpBoxAttribute = attribute as HelpBoxAttribute;
  26.  
  27. if (helpBoxAttribute.onlyShowWhenDefaultValue &&
  28. ((!helpBoxAttribute.inverse && !IsPropertyValueDefault(property)) ||
  29. (helpBoxAttribute.inverse && IsPropertyValueDefault(property))))
  30. return;
  31.  
  32. MessageType messageType = helpBoxAttribute.type;
  33. GUIContent content = new GUIContent(helpBoxAttribute.text);
  34.  
  35. position.y += EditorGUI.GetPropertyHeight(property, true) + 2f;
  36. position.height = EditorGUIUtility.singleLineHeight * 2.5f;
  37.  
  38. EditorGUI.HelpBox(position, content.text, messageType);
  39. }
  40.  
  41. public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
  42. {
  43. HelpBoxAttribute helpBoxAttribute = attribute as HelpBoxAttribute;
  44. float height = EditorGUI.GetPropertyHeight(property, true);
  45.  
  46. if (helpBoxAttribute.onlyShowWhenDefaultValue &&
  47. ((!helpBoxAttribute.inverse && !IsPropertyValueDefault(property)) ||
  48. (helpBoxAttribute.inverse && IsPropertyValueDefault(property))))
  49. return height;
  50.  
  51. return height + EditorGUIUtility.singleLineHeight * 2.5f + 4f; //add extra height
  52. }
  53.  
  54. private bool IsPropertyValueDefault(SerializedProperty property)
  55. {
  56. return property.propertyType switch
  57. {
  58. SerializedPropertyType.Integer => property.intValue == default,
  59. SerializedPropertyType.Boolean => property.boolValue == default,
  60. SerializedPropertyType.Float => Mathf.Approximately(property.floatValue, default),
  61. SerializedPropertyType.String => property.stringValue == default,
  62. SerializedPropertyType.ObjectReference => property.objectReferenceValue == null,
  63. _ => false
  64. };
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement