![]() | PropertyBackingFieldAttribute Constructor |
Name | Description | |
---|---|---|
![]() | PropertyBackingFieldAttribute |
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().
|
![]() | PropertyBackingFieldAttribute(String) |
Initializes a new instance of the PropertyBackingFieldAttribute class that
uses the default PropertyDrawer for the field type.
|
![]() | PropertyBackingFieldAttribute(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().
|
![]() | PropertyBackingFieldAttribute(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.
|