#pragma warning disable 618 /// /// A Singleton for use when your component needs to be blaced in a scene on design time. /// To use, override and write your initialization logic. /// If your singleton shouldn't be destroyed when moving between scenes (), /// Override and return true. /// Like this: /// /// protected override bool DontDestroySingleton /// { /// get { return true; } /// } /// /// public abstract class SceneSingleton : UnitySingleton { }