-
Notifications
You must be signed in to change notification settings - Fork 0
A. Getting Started
Toto Christensen edited this page Dec 13, 2024
·
7 revisions
- Download the package from the GitHub repository packages folder or the Unity Asset Store.
- Open Unity, and import the package (
Assets
>Import Package
>Custom Package
). - Select the downloaded package file to add it to your project.
After importing, add InspectorEnhancements to your script:
using InspectorEnhancements;
And you can start applying attributes to your fields or methods:
[MethodButton]
public void MyMethod() { /* ... */ }
[Required]
public GameObject MyObject;