https://github.com/ivanmurzak/unity-unirx-extensions
https://github.com/ivanmurzak/unity-unirx-extensions
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivanmurzak/unity-unirx-extensions
- Owner: IvanMurzak
- Created: 2020-07-27T09:22:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-04T15:32:28.000Z (over 4 years ago)
- Last Synced: 2025-02-13T21:39:41.014Z (4 months ago)
- Language: C#
- Size: 1.52 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unity-Package-Template
UPM (Unity Package Manager) ready GitHub repository for Unity
New Unity packages system is very easy to use and make your project much more cleaner.
The repository helps you to create your own Unity package with dependecies.# How to use
- "Use this template" green button at top right corner of GitHub page
- Clone your new repository
- Add all your stuff toAssets/_PackageRoot directory
- UpdateAssets/_PackageRoot/package.json
to yours
- (on Windows) executegitSubTreePushToUPM.bat
- (on Mac) executegitSubTreePushToUPM.makefile
- (optional) Create release from UPM branch on GitHub web page for support different versions

# How to import your package to Unity project
You may use one of the variants## Variant 1
- Select "Add package from git URL"
- Paste URL to your GitHub repository with simple modification:
-https://github.com/USER/REPO.git#upm
Dont forget to replace **USER** and **REPO** to yours
### **Or** you may use special version if you create one
https://github.com/USER/REPO.git#v1.0.0
Dont forget to replace **USER** and **REPO** to yours## Variant 2
Modify manifest.json file. Change"your.own.package"
to the name of your package.
Dont forget to replace **USER** and **REPO** to yours.{
"dependencies": {
"your.own.package": "https://github.com/USER/REPO.git#upm"
}
}### **Or** you may use special version if you create one
Dont forget to replace **USER** and **REPO** to yours.{
"dependencies": {
"your.own.package": "https://github.com/USER/REPO.git#v1.0.0"
}
}