UIToolkit ParticleSystem enables you to create ParticleSystem in the Unity UIBuilder.
-
Using Open UPM
Install via Package Manager
-
Open
Edit > Project Settings > Package Manager -
Add a new Scoped Registry (or edit the existing OpenUPM entry)
Name package.openupm.comURL https://package.openupm.comScope(s) com.annulusgames.alchemycom.mainragames.uitoolkit-particlesystem -
Click
Apply -
Open
Window > Package Management > Package Manager -
Click
+ -
Select
Install package by name... -
Paste
com.mainragames.uitoolkit-particlesysteminto Name -
Click
Install
Install via Project Manifest
-
Merge the snippet to Packages/manifest.json
{ "scopedRegistries": [ { "name": "package.openupm.com", "url": "https://package.openupm.com", "scopes": [ "com.annulusgames.alchemy", "com.mainragames.uitoolkit-particlesystem" ] } ], "dependencies": { "com.mainragames.uitoolkit-particlesystem": "1.0.4" } }
Install via Command-Line
-
(Optional) install openupm-cli. Ignore if already installed.
npm install -g openupm-cli -
Go to your unity project directory
cd YOUR_UNITY_PROJECT_DIR -
Install package: com.mainragames.uitoolkit-particlesystem
openupm add com.mainragames.uitoolkit-particlesystem
-
-
Using Git URL
Install via Package Manager
-
Open
Edit > Project Settings > Package Manager -
Click
+ -
Select
Install package from git URL... -
(Optional) if you haven't installed Alchemy, Enter the following URL First:
https://github.com/annulusgames/Alchemy.git?path=/Alchemy/Assets/Alchemy -
Enter the following URL:
https://github.com/MainraStudio/UI-Toolkit-Particle-System.git?path=Packages/UIToolkitParticleSystem -
Click
Install
Install via Project Manifest
-
Merge the snippet to Packages/manifest.json
{ "dependencies": { "com.mainragames.uitoolkit-particlesystem": "https://github.com/MainraStudio/UI-Toolkit-Particle-System.git?path=Packages/UIToolkitParticleSystem" } } -
(Optional) if you haven't installed Alchemy
{ "dependencies": { "com.annulusgames.alchemy": "https://github.com/annulusgames/Alchemy.git?path=/Alchemy/Assets/Alchemy" } }
-

