Helpful extensions for Unity. Each extension is an NPM module, you can integrate them separately to your projects.
Unity Project
Built with Unity 2020.3.8f1 · download the source from GitHub
Download 0
README
Rendered from GitHub1. Add NPM repository to project
Modify manifest.json file. The file located under directory "Packages". Add "scopedRegistries" to the end of the file.
{
"dependencies": {
},
"scopedRegistries": [
{
"name": "Unity Extensions",
"url": "https://registry.npmjs.org",
"scopes": [
"extensions.unity"
]
}
]
}
2. Add extensions
When NPM repository added, you may optionally add all extensions from the list below. You just need to add relevant line to the "dependencies" section. If you are adding multiple lines don't forget to add ',' in the end of each line.
Unity-Extensions
{
"dependencies": {
"extensions.unity.base": "1.9.0"
}
}
Unity-Saver

{
"dependencies": {
"extensions.unity.saver": "1.0.6"
}
}
Unity Network REST
{
"dependencies": {
"extensions.unity.network": "1.3.3"
}
}
Unity IAP Store
{
"dependencies": {
"extensions.unity.iap.store": "2.0.6"
}
}
Unity UniRx extensions
{
"dependencies": {
"extensions.unity.unirx": "1.1.5"
}
}
Unity-UI-Extensions
{
"dependencies": {
"extensions.unity.ui": "1.3.2"
}
}
Shapes RectTransform

{
"dependencies": {
"extensions.unity.shapes.recttransform": "1.0.2"
}
}
Example - All Extensions included
{
"dependencies": {
"extensions.unity.base": "1.9.0",
"extensions.unity.saver": "1.0.2",
"extensions.unity.network": "1.3.3",
"extensions.unity.iap.store": "2.0.6",
"extensions.unity.ui": "1.3.2",
"extensions.unity.unirx": "1.1.5",
"extensions.unity.shapes.recttransform": "1.0.2"
},
"scopedRegistries": [
{
"name": "Unity Extensions",
"url": "https://registry.npmjs.org",
"scopes": [
"extensions.unity"
]
}
]
}
Versions 0
No versions tracked yet.
Dependencies 0
No dependencies.
Changelog 0 releases
No changelog entries yet. Run the admin Changelog & Version Scanner to pull from the repository's CHANGELOG.md.
Comments
No comments yet. Be the first!

Sign in to join the conversation
Sign In