
Fly-weighted and easy DI systemThis DI system allows to inject global and scene systems(managers) into each other.To use this DI system you need only few things:Add SystemsManager prefab onto your initial sceneInherit your classes from SystemBase class, if you need to use them from other scriptsUse [Inject] attribute to access these classesIf target class is not inherited from SystemBase class, ISystem interface, or not presented on the same scene where SystemsManager prefab presented – call SystemsManager.InjectSystemsTo(this) in your Start() or Awake() method in class where you want to inject needed systemsThis package contains simple example how to use Light DI:- PlayerController with injected CameraController and InputManager.Discord | Emailminimal (but sufficient) Dependency Injection functionality for not complex projects (it allows to inject global and scene systems(managers) into each other)easy to integrate, easy to useperfect solution for hypercasual/hybridcasual and midcore gamessupports both classes and interfacescan work in applications with multiple scenes