Installation
There are several options to download View System, so feel free to choose the one that best suits your project.
- Option 1: OpenUPM (Recommend)
openupm add com.macacagames.viewsystem
- Option 2: Unity Package file Add it to your editor's manifest.json file like this:
{
"dependencies": {
"com.macacagames.utility": "https://github.com/MacacaGames/MacacaUtility.git",
"com.macacagames.viewsystem": "https://github.com/MacacaGames/MacacaViewSystem.git"
}
}
- Option 3: Git SubModule
git submodule add https://github.com/MacacaGames/MacacaViewSystem.git Assets/MacacaViewSystem
Note: ViewSystem depends on MacacaUtility, so make sure to also add MacacaUtility as a git submodule.
git submodule add hhttps://github.com/MacacaGames/MacacaUtility.git Assets/MacacaUtility