Property | Type | Description | |
---|---|---|---|
ConditionalMemberNames | string[] | ||
Operator | fiLogicalOperator |
Method | Description | |
---|---|---|
InspectorShowIfAttribute ( fiLogicalOperator op ) : System |
This allows a member to be conditionally shown in the inspector depending upon the state of other variables in object. This does *not* change serialization behavior, only display behavior.
|
|
InspectorShowIfAttribute ( string conditionalMemberName ) : System |
This allows a member to be conditionally hidden in the inspector depending upon the state of other variables in object. This does *not* change serialization behavior, only display behavior.
|
public InspectorShowIfAttribute ( fiLogicalOperator op ) : System | ||
op | fiLogicalOperator | Determines how multiple boolean values are combined to determine if /// the property is hidden. |
return | System |
public InspectorShowIfAttribute ( string conditionalMemberName ) : System | ||
conditionalMemberName | string | The name of the member to use as a condition. /// The conditional needs to either be a boolean field, a boolean property with a /// getter, or a no-argument method that returns a boolean. /// |
return | System |