示例#1
0
        /// <summary>
        /// 移除资源引用
        /// </summary>
        private void RemoveAssetQuoted()
        {
            int used = OnABBundleInUsed.Invoke(ABName, false);

#if LOG_ASSET_QUOTEDER
            "log:Asset bundle {0} quoted reduced to {1}".Log(ABName, used.ToString());
#endif
        }
示例#2
0
        /// <summary>
        /// 增加资源引用
        /// </summary>
        private void AddAssetQuoted()
        {
            int used = OnABBundleInUsed.Invoke(ABName, true);

#if LOG_ASSET_QUOTEDER
            "log:Asset bundle {0} quoted increaced {1}".Log(ABName, used.ToString());
#endif
        }