Esempio n. 1
0
        public object Spawn(Func <object> spawnFunc, string poolName, Action <object> onSpawnCallback = null)
        {
            if (!poolDict.TryGetValue(poolName, out var pool))
            {
                pool = new PoolCat(poolName, spawnFunc);
                poolDict[poolName] = pool;
            }

            var spawn = pool.Spawn(onSpawnCallback);

            return(spawn);
        }
Esempio n. 2
0
        public object Spawn(Type spawnType, string poolName = null, Action <object> onSpawnCallback = null)
        {
            poolName = poolName ?? spawnType.FullName;
            if (!poolDict.TryGetValue(poolName, out var pool))
            {
                pool = new PoolCat(poolName, spawnType);
                poolDict[poolName] = pool;
            }

            var spawn = pool.Spawn(onSpawnCallback);

            return(spawn);
        }
Esempio n. 3
0
        public static void Despawn(this GameObject self)
        {
            if (self == null)
            {
                return;
            }
            if (self.IsCacheContainsKey(PoolCatConst.Pool_Name))
            {
                PoolCat pool = self.GetCache <PoolCat>(PoolCatConst.Pool_Name);
                pool.Despawn(self);
            }

            //      else if (self.IsCacheContainsKey(PoolCatConst.Lua_Pool_Name))//Lua端调用
            //      {
            //        LuaTable pool = self.GetCache<LuaTable>(PoolCatConst.Lua_Pool_Name);
            //        pool.Get("Despawn", out LuaFunction despawnFunction);
            //        despawnFunction.Action(pool, self);
            //        despawnFunction.Dispose();
            //      }
        }
Esempio n. 4
0
 public static PoolCat AddPool(string poolName, PoolCat pool)
 {
     return(PoolCatManager.instance.AddPool(poolName, pool));
 }
Esempio n. 5
0
 public bool TryGetPool(string poolName, out PoolCat pool)
 {
     return(this.poolDict.TryGetValue(poolName, out pool));
 }
Esempio n. 6
0
 public PoolCat AddPool(string poolName, PoolCat pool)
 {
     poolDict[poolName] = pool;
     return(pool);
 }