예제 #1
0
        /// Constructor, name could be empty/null for noname systems
        public Feature(string name)
        {
            name = FeatureHelper.GetUnnamed(name);

            FeatureHelper.CollectSystems(name, this);
        }
예제 #2
0
 public FeatureWithObserver(string name) : base(FeatureHelper.GetUnnamed(name))
 {
     FeatureHelper.CollectSystems(this.name, this);
     Object.DontDestroyOnLoad(this.gameObject);
 }