Skip to content

A. Getting Started

Toto Christensen edited this page Dec 13, 2024 · 7 revisions

Installation

  1. Download the package from the GitHub repository packages folder or the Unity Asset Store.
  2. Open Unity, and import the package (Assets > Import Package > Custom Package).
  3. Select the downloaded package file to add it to your project.

Basic Usage

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;
Clone this wiki locally