Ejemplo n.º 1
0
        protected virtual void Awake()
        {
            ProcessingEntities.Create(this);
            conditionManualDeploy = this is IManualDeploy;
            var cObject = Add <ComponentObject>();

            cObject.transform = transform;
            if (Starter.initialized == false)
            {
                return;
            }
            Setup();
        }
Ejemplo n.º 2
0
 public EntityComposer(int components = 1)
 {
     storages = new Storage[components];
     entity   = ProcessingEntities.Create();
     length   = 0;
 }