Compare commits

...

4 Commits

Author SHA1 Message Date
hevinci
9be5ec0f31 Update CHANGELOG.md 2023-02-14 11:49:35 +08:00
hevinci
a8a0c3831b Update package.json 2023-02-14 11:49:21 +08:00
hevinci
ef31d5a938 update asset system
修复资源加载代码逻辑错误。
2023-02-14 11:40:35 +08:00
hevinci
812db6dafe fix #65
修复构建逻辑代码错误。
2023-02-14 11:39:01 +08:00
4 changed files with 10 additions and 3 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this package will be documented in this file.
## [1.4.4-preview] - 2023-02-14
### Fixed
- (#65)修复了AssetBundle构建宏逻辑错误。
- 修复了AssetBundle加载宏逻辑错误。
## [1.4.3-preview] - 2023-02-10
全新的缓存系统!

View File

@@ -16,7 +16,7 @@ namespace YooAsset.Editor
var buildParameters = buildParametersContext.Parameters;
#if !UNITY_2021_1_OR_NEWER
#if UNITY_2021_1_OR_NEWER
if (buildParameters.BuildPipeline == EBuildPipeline.BuiltinBuildPipeline)
throw new Exception($"Unity2021 or newer not support {nameof(EBuildPipeline.BuiltinBuildPipeline)}, Please use {nameof(EBuildPipeline.ScriptableBuildPipeline)}");
#endif

View File

@@ -350,7 +350,7 @@ namespace YooAsset
return loader;
// 新增下载需求
#if !UNITY_WEBGL
#if UNITY_WEBGL
if (bundleInfo.Bundle.IsRawFile)
loader = new RawBundleFileLoader(this, bundleInfo);
else

View File

@@ -1,7 +1,7 @@
{
"name": "com.tuyoogame.yooasset",
"displayName": "YooAsset",
"version": "1.4.3-preview",
"version": "1.4.4-preview",
"unity": "2019.4",
"description": "unity3d resources management system.",
"author": {