【Unity 框架】QFramework v1.0 使用指南 工具篇:11. PoolKit 对象池套件 | Unity 游戏框架 | Unity 游戏开发 | Unity 独立游戏
SimpleObjectPool简易对象池classFish{}varpool=newSimpleObjectPool(()=>newFish(),initCount:50);Debug.Log(pool.CurCount);//50varfish=pool.Allocate();Debug.Log(pool.CurCount);//49pool.Recycle(fish);Debug.Log(p