What problem does it solve?
This Skill simplifies the process of adding new packages to your Unity project, whether they are from the official registry, a Git URL, or a local path.
Core Features & Use Cases
- Registry Installation: Install the latest compatible version of a package by its ID (e.g.,
com.unity.textmeshpro).
- Versioned Installation: Specify an exact version for a package (e.g.,
[email protected]).
- Git Installation: Install directly from a Git repository URL, optionally specifying a branch or tag (e.g.,
https://github.com/user/repo.git#v1.0.0).
- Local Path Installation: Install packages from a local directory on your machine (e.g.,
file:../MyPackage).
- Use Case: Quickly add a new UI toolkit package to your Unity project using its package ID.
Quick Start
Install the package with the ID 'com.unity.inputsystem' into your project.