[DisplayProperty]

Attribute exposes a C# property in the inspector.

Support Types

Type
Description

Property

Supported property type

Examples

[SerializeProperty]
public int MyProperty { get; set; }

[SerializeProperty]
public string Name
{
    get => name;
    set => name = value;
}

Last updated