Handle type data generically with Unity Properties
Use the Unity Properties API to generically discover and manipulate object properties at runtime.
Read time 1 minuteLast updated 5 days ago
The Unity Properties API, in the namespace, uses a visitor design pattern to visit .NET objects at runtime. Visiting objects allows you to discover and modify their properties and add new operations to an existing object structure at runtime without modifying the structure itself. You can build various functionalities on top of the visitor pattern, such as serialization, data migration, deep data comparisons, and data binding.
Unity.PropertiesTopic | Description |
|---|---|
| Introduction to Unity Properties | Understand the fundamentals and uses of the Unity Properties API. |
| Property bags | Understand the role of property bags and the performance considerations when using them. |
| Property visitors | Understand the role of property visitors and the performance considerations when using them. |
| Property paths | Understand the role of property paths and the performance considerations when using them. |
| Create a property visitor with the PropertyVisitor class | Learn how to use the |
| Create a property visitor with low-level APIs | Learn how to use the |