-
-
Notifications
You must be signed in to change notification settings - Fork 13
Installation
First, make sure your Unity project is set to use .Net 4
, otherwise you will receive compilation errors.
Using this library in your project can be done in three ways:
The package is available on the openupm registry. It's recommended to install it via openupm-cli.
openupm add com.jeffcampbellmakesgames.entitasredux
Using the native Unity Package Manager introduced in 2017.2, you can add this library as a package by modifying your manifest.json
file found at /ProjectName/Packages/manifest.json
to include it as a dependency. You will need to have Git installed and available in your system's PATH.
See the example below on how to reference it.
{
"dependencies": {
...
"com.jeffcampbellmakesgames.genesis" : "https://github.com/jeffcampbellmakesgames/genesis.git#release/stable",
"com.jeffcampbellmakesgames.entitasredux" : "https://github.com/jeffcampbellmakesgames/entitas-redux.git#releases/stable",
...
}
}
Open the package manager in the Unity editor. You can follow these instructions on how to install the dependencies.
The url for Genesis is
https://github.com/jeffcampbellmakesgames/genesis.git#release/stable
The url for Entitas-Redux is
https://github.com/jeffcampbellmakesgames/entitas-redux.git#releases/stable