예제 #1
0
파일: Toolbox.cs 프로젝트: bmjoy/ecs
        public static void InitializeObject(object obj)
        {
            var awakeble = obj as IAwake;

            if (awakeble != null)
            {
                awakeble.OnAwake();
            }
            ProcessorUpdate.Add(obj);
        }
예제 #2
0
파일: MonoCached.cs 프로젝트: atoris/ecs
        void OnEnable()
        {
            if (Starter.initialized == false)
            {
                return;
            }
            HandleEnable();

            ProcessorSignals.Default.Add(this);
            ProcessorUpdate.Add(this);
        }