 | PropertyField Constructor |
Creates a new wrapper for mono behaviour properties exposed in the Unity inspector.
Namespace: Slash.Unity.Editor.Common.InspectorsAssembly: Slash.Unity.Editor.Common (in Slash.Unity.Editor.Common.dll) Version: 0.0.0.0
Syntaxpublic PropertyField(
Object instance,
PropertyInfo property,
SerializedPropertyType type
)
Public Sub New (
instance As Object,
property As PropertyInfo,
type As SerializedPropertyType
)
public:
PropertyField(
Object^ instance,
PropertyInfo^ property,
SerializedPropertyType type
)
new :
instance : Object *
property : PropertyInfo *
type : SerializedPropertyType -> PropertyField
Parameters
- instance
- Type: SystemObject
Object to wrap the property of. - property
- Type: System.ReflectionPropertyInfo
Property to wrap. - type
- Type: SerializedPropertyType
Type of the property to wrap.
See Also