Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (22 loc) · 883 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 883 Bytes

Unity-IR-Architecture

Using interactors and repositories in unity.

Don't use it, old archive

Accelerate development for small/middle size games! Store data in repositories instead of static/singleton (if you use it), and access in interactors. You can also get access to your data in Editor, using ScriptableObjectInteractor!

IR can save/load your data automatically (in Editor too) instead your own hardcode save-system (:

Installation

Project supports Unity Package Manager. To install project as Git package do following:

  1. Open PackageManager
  2. Add package by git url https://github.com/LinkerOK/Unity-IR-Architecture.git

Or:

  1. Open the Packages/manifest.json file.
  2. Update dependencies to have com.devlink.ir package:
{
  "dependencies": {
    "com.devlink.ir": "https://github.com/LinkerOK/Unity-IR-Architecture.git"
  }
}

Have fun :)