Commit Graph

172 Commits (ecd2bb4590a4585e89f0b019ac9c53ccac0572a8)

Author SHA1 Message Date
hevinci 7d5b6504f4 Update YooAssets.cs
检测原生文件加载方法,预防传入无效文件。
2022-07-05 20:07:32 +08:00
Y-way 8538d0de28 拼写错误 2022-06-30 14:09:07 +08:00
hevinci 5425e17d6f Update AssetOperationHandle.cs 2022-06-30 12:12:44 +08:00
何冠峰 bb3065d08d
Merge pull request #17 from Y-way/OptimizeAssetOperationHandle
AssetOperationHandle类新增便捷方法,便于链式编程
2022-06-30 12:03:57 +08:00
hevinci 556b23b488 Update OperationHandleBase.cs 2022-06-29 12:41:06 +08:00
hevinci 5b0c189d75 Update InitializationOperation.cs 2022-06-29 11:59:39 +08:00
hevinci 9ac07e94d1 Update UpdateManifestOperation
增加在弱联网环境下的更新支持
2022-06-28 20:13:32 +08:00
Y-way fee6e8f4dd 增加失败提示 2022-06-28 19:45:37 +08:00
Y-way 1e39b1af6d AssetOperationHandle类新增便捷方法,便于链式编程
TextAsset asset;
                YooAssets.LoadAssetAsync<TextAsset>(name).WaitForAsyncOperationComplete().GetAssetObjet<TextAsset>(out asset).Release();
                YooAssets.LoadAssetAsync<TextAsset>(name).Completed += handler => {
                    handler.GetAssetObjet(out asset).Release();
                };
2022-06-28 19:17:47 +08:00
hevinci fbb9bff3c7 Remove AutoReleaseGameObjectHandle param.
移除自动释放资源对象句柄的功能。
2022-06-25 12:09:20 +08:00
hevinci 6471b237ce Update Patch System
离线模式移除资内置资源解压功能。
2022-06-25 11:42:50 +08:00
hevinci 32148821a1 Add AutoReleaseGameObjectHandle initialize parameters
支持自动释放游戏对象句柄的功能。
2022-06-23 16:02:53 +08:00
hevinci 3cbf891674 Add GetAssetPath method.
增加YooAssets.GetAssetPath方法
2022-06-21 17:21:37 +08:00
hevinci 00688a65af Add VerifyLevel filed.
增加了下载文件校验等级初始化参数。
2022-06-21 16:04:59 +08:00
hevinci c0099cb90c Update RawFileOperation.cs
优化原生文件加载逻辑
2022-06-21 14:08:02 +08:00
hevinci 43248408fc Update DownloaderOperation.cs
Add OnStartDownloadFileCallback filed.
Change OnDownloadFileFailedCallback to OnDownloadErrorCallback.
2022-06-21 10:40:16 +08:00
hevinci d535500b9e Update AssetBundleDebugger 2022-06-20 19:56:19 +08:00
hevinci 9cea3e1ba9 Update YooAssets.cs
Add IsInitialized filed
2022-06-20 15:38:55 +08:00
hevinci 3693f1ea98 Update AssetInfo.cs
Add Address filed.
2022-06-20 10:18:51 +08:00
hevinci 0b1990f040 Yooasset add destroy methods
增加销毁机制
2022-06-15 18:14:04 +08:00
hevinci 8deb239450 Update remote debugger
Support remote mobie device debugging
2022-06-15 16:52:54 +08:00
hevinci 9c49d8d54a Update manifest operation add FoundNewManifest filed.
补丁清单更新操作,增加了查询发现了新的清单的字段。
2022-05-27 15:17:10 +08:00
hevinci e9841a65c6 Added pause method and resume method to patch downloader
补丁下载器增加暂停方法和恢复方法
2022-05-21 22:36:06 +08:00
hevinci 0dcbe0574c Fixed load sprite issues in editor simulate mode
修复加载精灵图片失败的问题在编辑器模拟模式下。
2022-05-16 20:16:10 +08:00
hevinci 8dc0560537 Optimized the loading method of the setting file
优化了配置文件的加载方式和途径。
2022-05-13 23:53:19 +08:00
hevinci a054740de6 Optimize assetbundle build parameters
优化了资源包的构建参数:始终开启DisableLoadAssetByFileName
2022-05-13 21:58:23 +08:00
hevinci 029b850d6b Update asset system
新增获取所有子资源对象的方法。
2022-05-13 14:57:49 +08:00
Allen Jiang 316294f449 feat(AssetSystem): 获取图集下所有的精灵对象集合 2022-05-13 14:08:36 +08:00
hevinci 09fac3bd64 Add warning when asset path is invalid. 2022-05-12 23:13:21 +08:00
hevinci 4cad587609 Optimized asset system and patch system framework
优化了资源定位不正确导致的错误报告方式。
YooAssets.ProcessOperation()重命名为YooAssets.StartOperation()
YooAssets.GetBundleInfo()已经移除方法。
YooAssets.IsNeedDownloadFromRemote()新增加方法。
2022-05-11 16:48:17 +08:00
hevinci 67eeae31c7 Update patch manifest
更新资源清单:资源对象增加分类标签。
2022-05-11 16:23:31 +08:00
hevinci 79efe6237d Update asset system 2022-05-09 21:18:15 +08:00
hevinci bf0f479234 Update download system 2022-05-09 18:44:49 +08:00
hevinci b8ba4219cd Update YooAssets.cs 2022-05-08 22:09:44 +08:00
hevinci bd87e982ef Add progress of async operation
异步操作类增加进度查询。
2022-05-07 20:30:16 +08:00
hevinci ecd4973948 Update editor simulate mode parameters
更新编辑器下模拟模式的初始化参数类
2022-05-07 19:20:52 +08:00
hevinci 6dd1eee6c3 Remove LoadAllAssets method.
移除YooAssets.LoadAllAssets方法。
2022-05-07 18:45:15 +08:00
hevinci 42703def02 Add process operation method.
增加开启异步操作的方法。
2022-05-07 18:23:00 +08:00
hevinci afc08d4e46 Add load all asset method.
增加新的资源加载方法:加载资源对象所属资源包里的所有资源。
2022-05-06 23:15:03 +08:00
hevinci c395a7a750 Supports location to lower
支持资源定位地址小写。
2022-05-05 23:11:26 +08:00
hevinci 2ab045658b Compatible with Unity2018
兼容Unity2018版本
2022-05-05 22:03:35 +08:00
hevinci c196cd84d3 Optimized the speed of simulate build.
优化了编辑器下模拟构建的速度。
2022-05-05 21:12:44 +08:00
hevinci c3c18cd555 Added initialization fault error detection
增加初始化容错检测。
2022-05-05 11:44:03 +08:00
hevinci eafdb8cd31 Update AssetBundleCollector
AssetBundleGrouper变更为AssetBundleCollector
2022-05-04 21:24:51 +08:00
hevinci 1c1bb078b1 Remove auto release interval create param.
移除了自动释放资源的初始化参数。
2022-05-03 12:33:28 +08:00
hevinci 9ec841ff67 Add get asset info method.
增加获取资源信息的方法。
2022-05-03 12:23:08 +08:00
hevinci 665a16fe60 Support fast build mode.
支持快速构建模式,真实的实现EditorPlayMode的运行时环境。
2022-05-02 23:15:09 +08:00
hevinci 8d02406211 Update AssetSystem 2022-05-02 17:54:55 +08:00
hevinci 873d873194 Add clear unused cache files method.
增加清空缓存文件的方法。
2022-05-02 15:03:36 +08:00
hevinci 2c9819762a Update package update method 2022-05-01 20:43:00 +08:00
hevinci ce70eebda6 Add package update method
新增指定资源版本的资源更新下载方法。
2022-05-01 20:33:50 +08:00
hevinci 47af58bb5b Patch DownLoader added a method to download all resources.
补丁下载器新增下载全部资源的方法。
2022-05-01 15:26:48 +08:00
hevinci b0397981ce Delete the file whose verification failed
初始化的时候,删除验证失败的资源文件。
2022-05-01 14:47:59 +08:00
hevinci b443a1c308 Optimize packaging bundle core logic
优化了打包的核心逻辑,对依赖资源进行自动划分。
2022-04-30 19:10:52 +08:00
hevinci f8036782e4 BundleInfo Adds the InCloud method
BundleInfo增加资源包文件是否在云端的查询接口
2022-04-29 16:42:53 +08:00
hevinci ca7b42981b Fixed operation system error
修复异步操作系统的Task二次等待失败的问题。
2022-04-29 11:14:21 +08:00
hevinci 62f1c050ca Rename LoadRawFileAsync to GetRawFileAsync
LoadRawFileAsync 方法重新命名为GetRawFileAsync
2022-04-28 22:49:55 +08:00
hevinci 9f1eaf4a62 Update adressable location 2022-04-28 18:28:46 +08:00
hevinci 2cb006f3d9 Support addressable location
支持可寻址资源定位
2022-04-28 17:23:31 +08:00
hevinci 775c724840 Update AssetBundleBuilder
AssetBundleBuilder界面增加演练构建选项。
构建文件名增加版本信息。
2022-04-27 11:02:30 +08:00
hevinci 5484b604a7 Optimize class type search code
优化类型搜索方式,改为全域搜索类型。
2022-04-26 18:24:14 +08:00
hevinci 9bf22f2c79 Operation handles support error queries
操作句柄支持错误信息查询。
2022-04-24 18:30:35 +08:00
hevinci a6e94acefb Update AssemblyInfo.cs 2022-04-24 11:16:38 +08:00
hevinci cd62c1dd9a Update AssetSystem 2022-04-22 16:43:09 +08:00
hevinci e6422445a6 Added debugging information
新增调试信息,出生场景和出生时间。
2022-04-22 16:22:09 +08:00
hevinci a25fd19bcc Fixed an issue with task asyn loading waiting 2022-04-21 21:55:48 +08:00
hevinci 6675e8f171 Fixed an issue with task asyn loading waiting 2022-04-21 21:39:00 +08:00
hevinci c836dce54d Fixed an issue with task asyn loading waiting
修复Task异步加载一直等待的问题。
2022-04-21 21:27:53 +08:00
hevinci f3ab8f63e7 Optimize the scene unload logic.
优化场景卸载逻辑,在加载新的主场景的时候自动卸载已经加载的所有场景。
2022-04-21 21:11:11 +08:00
hevinci 20d2c517b2 Optimized raw file load logic
优化原生文件加载逻辑,支持离线运行模式和编辑器运行模式。
2022-04-21 16:16:40 +08:00
hevinci d6a2b31d5c Add editor extend properties
增加编辑器扩展的支持
2022-04-19 10:11:24 +08:00
hevinci b221b8121a Update bundleInfo
修复原生文件拷贝目录不存导致的加载失败
完善原生文件异步加载接口
2022-04-18 15:08:39 +08:00
hevinci abb75fe858 Fixed a process error raised after the additional version of the patch manifest
修复资源清单附加版本之后引发的一个流程错误。
2022-04-18 09:58:44 +08:00
hevinci 4591d0b5f6 Check location param is invalid.
在编辑器下检测资源路径是否合法并警告。
2022-04-14 19:01:39 +08:00
hevinci 99a3abf697 Resource location interface extension 2022-04-14 14:06:23 +08:00
hevinci 09a985fadb Resource location interface extension
资源定位接口扩展
2022-04-14 12:19:04 +08:00
hevinci ea28d3e6e1 Simplify the concept of resource version
简化资源版本概念
2022-04-12 19:15:44 +08:00
hevinci 9fbce6a726 offline play mode supports WebGL platform.
离线运行模式支持WEBGL平台。
2022-04-12 10:53:12 +08:00
hevinci f38d663e9d Update AssetSystem
实例化GameObject的时候,如果没有传递坐标和角度则使用默认值。
2022-04-08 19:10:00 +08:00
hevinci d6b54dd49c Update AssetBundleTools
StreamingAssets目录下增加了用于存放打包资源的总文件夹
2022-04-07 19:18:33 +08:00
hevinci 28c22694ba Update AssetSystem
修复在资源加载完成回调内释放自身资源句柄时的异常报错。
2022-04-07 14:24:09 +08:00
hevinci 991fa5b250 Update YooAssets.cs 2022-04-04 22:43:47 +08:00
hevinci abdf2b859e Update YooAssetDriver.cs 2022-04-04 22:43:42 +08:00
hevinci f1615b4487 Update DownloadSystem 2022-04-04 22:43:37 +08:00
hevinci 5325e3a1e9 Update YooUtility.cs 2022-04-03 22:41:01 +08:00
hevinci b8e2f33137 Update PatchSystem 2022-04-02 15:13:57 +08:00
hevinci 2d9cccae6f Update DownloadSystem 2022-03-29 19:45:20 +08:00
hevinci 32d422aeaa Update DownloadSystem 2022-03-29 18:14:04 +08:00
hevinci bcd53cf834 Update PatchSystem 2022-03-25 15:02:21 +08:00
hevinci e8a7be6957 Update AssetSystem 2022-03-24 21:34:18 +08:00
hevinci 44ac4ebb8f Update YooAssets 2022-03-24 00:20:37 +08:00
hevinci 9e19f776af Update OperationSystem 2022-03-24 00:20:29 +08:00
hevinci 62b46c4180 Update Debugger 2022-03-23 23:07:35 +08:00
hevinci 2bbc70896a Update AssetSystem 2022-03-23 23:07:21 +08:00
hevinci b3fcbf85ff Update Utility 2022-03-23 18:23:15 +08:00
hevinci 75fc210218 Update Settings 2022-03-23 18:23:08 +08:00
hevinci ef8706e3e7 Update PatchSystem 2022-03-23 18:23:01 +08:00
hevinci 6f6ecf845a Update AssetSystem 2022-03-23 14:58:13 +08:00
hevinci 829b4fca76 Update AssetSystem 2022-03-23 12:44:56 +08:00
hevinci 3e8b8123e1 Update YooAssets.cs 2022-03-23 00:29:23 +08:00