/** 加载一个(计数+1) */ public static void loadOne(int type, int id, Action overFunc) { AssetPool pool = _poolArr[type]; if (pool == null) { Ctrl.warnLog("未注册AssetPoolType", type); return; } pool.loadOne(id, overFunc); }