Click or drag to resize
PropertyBackingFieldAttribute Constructor
Overload List
  NameDescription
Public methodPropertyBackingFieldAttribute
Initializes a new instance of the PropertyBackingFieldAttribute class that uses the default PropertyDrawer for the field type. This constructor assumes that the backing field name starts with "m_" or "_" and that the property name otherwise matches. For example, a field m_Character or _Character could refer to either a property Character { get; set; } or a pair of methods GetCharacter() and SetCharacter().
Public methodPropertyBackingFieldAttribute(String)
Initializes a new instance of the PropertyBackingFieldAttribute class that uses the default PropertyDrawer for the field type.
Public methodPropertyBackingFieldAttribute(Type, Object)
Initializes a new instance of the PropertyBackingFieldAttribute class that should use a custom PropertyDrawer associated with another PropertyAttribute to display the decorated field in the inspector. This constructor assumes that the backing field name starts with "m_" or "_" and that the property name otherwise matches. For example, a field m_Character or _Character could refer to either a property Character { get; set; } or a pair of methods GetCharacter() and SetCharacter().
Public methodPropertyBackingFieldAttribute(String, Type, Object)
Initializes a new instance of the PropertyBackingFieldAttribute class that should use a custom PropertyDrawer associated with another PropertyAttribute to display the decorated field in the inspector.
Top
See Also