Kit with common base components to use in Unity.
Work In Progress
Open Packages/manifest.json
with your favorite text editor. Add a scoped registry and following line to dependencies block:
{
"scopedRegistries": [
{
"name": "npmjs",
"url": "https://registry.npmjs.org/",
"scopes": [
"com.sensengames"
]
}
],
"dependencies": {
"com.sensengames.unity-sensen-components": "1.0.0"
}
}
Package should now appear in package manager.
The package is also available on the openupm registry. You can install it eg. via openupm-cli.
openupm add com.sensengames.unity-sensen-components
Open Packages/manifest.json
with your favorite text editor. Add following line to the dependencies block:
{
"dependencies": {
"com.sensengames.unity-sensen-components": "https://github.com/sensengames/unity-sensen-components.git"
}
}
The package can optionally be set as testable. In practice this means that tests in the package will be visible in the Unity Test Runner.
Open Packages/manifest.json
with your favorite text editor. Add following line after the dependencies block:
{
"dependencies": {
},
"testables": [ "com.sensengames.unity-sensen-components" ]
}
Work In Progress
MIT License
Copyright © 2023 Sensen Games