Skip to content

Commit

Permalink
fixed param naming error issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michael811125 committed Jul 11, 2022
1 parent 6137df3 commit 77d525b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static string[] cryptogramArgs
public const string APPLE_STORE = "apple_store";

// 佈署配置檔
public const string cfgFullPathName = "bundle_cfg";
public const string cfgFullPathName = "bundle_cfg.txt";

// Bundle平台路徑
public const string bundleDir = "/AssetBundles"; // Build 目錄
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ public async UniTask<BundlePack> LoadBundlePack(string fileName, Progression pro

#if UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL
// 使用[文件流]加載方式, 只能存在於Persistent的路徑 (因為StreamingAssets只使用UnityWebRequest方式請求)
if (BundleConfig.bBundleStream && !this.HasInStreamingAssets(fileName))
if (BundleConfig.bBundleStreamMode && !this.HasInStreamingAssets(fileName))
{
// 解密方式
string cryptogramType = BundleConfig.cryptogramArgs[0].ToUpper();
Expand Down
3 changes: 3 additions & 0 deletions Assets/OxGFrame/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# CHANGELOG

## [1.0.1] - 2022-07-11
- Fixed CacheBundle has parameter namin error issue lead to cannot found reference.

## [1.0.0] - 2022-07-10
- Initial submission for package distribution.
2 changes: 1 addition & 1 deletion Assets/OxGFrame/MediaFrame/Example/Misc/Video/v1.mp4.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Assets/OxGFrame/MediaFrame/Example/Misc/Video/v2.mp4.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Assets/OxGFrame/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "com.michaelo.oxgframe",
"displayName": "OxGFrame",
"description": "The OxGFrame is a framework based on Unity for accelerating game development, including asset loading (AssetLoader), user interface (UIFrame), game scene (GSFrame), game object (EntityFrame), audio and video (MediaFrame), game system integration (GSIFrame), network (NetFrame), event registration (EventCenter), API registration (APICenter), Http.Acax (imitation Ajax concept), etc. are all modularly designed, which can be easily started and effectively speed up development efficiency, and supports multi-platform Win, Android, iOS, WebGL.",
"version": "1.0.0",
"description": "The OxGFrame is a framework based on Unity for accelerating game development. Supports multi-platform Win, Android, iOS, WebGL.",
"version": "1.0.1",
"unity": "2021.3",
"license": "MIT",
"dependencies": {},
Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 77d525b

Please sign in to comment.