diff --git a/Editor/TextureEditor/.DS_Store.meta b/Editor/TextureEditor/.DS_Store.meta index 4dd0d2d23..ee4e3e9c4 100644 --- a/Editor/TextureEditor/.DS_Store.meta +++ b/Editor/TextureEditor/.DS_Store.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a7b2ae7470004a7fe7388e88a3633f9a +guid: 8c44a3f4e4a7e6890283d21803d2b864 DefaultImporter: externalObjects: {} userData: diff --git a/Editor/WXConvertCore.cs b/Editor/WXConvertCore.cs index 953a2c201..98b01a04f 100644 --- a/Editor/WXConvertCore.cs +++ b/Editor/WXConvertCore.cs @@ -216,6 +216,56 @@ namespace WeChatWASM return WXExportError.SUCCEED; } + private static int GetEnabledFlagStringIndex(string inAllText, string inTagStr) + { + try + { + int tagStrIdx = inAllText.IndexOf(inTagStr); + if (tagStrIdx == -1) throw new Exception($"Tag string '{inTagStr}' not found."); + + int enabledStrIdx = inAllText.IndexOf("enabled: ", tagStrIdx); + if (enabledStrIdx == -1) throw new Exception("'enabled: ' string not found after tag."); + + // inAllText[enabledStrIdx] == 'e' + // And that is to say, inAllText[enabledStrIdx + 9] should be 0 or 1 + return enabledStrIdx + 9; + } + catch (Exception ex) + { + UnityEngine.Debug.LogError($"Failed to get enabled flag string index: {ex.Message}"); + throw; + } + } + + private static void SetPluginCompatibilityByModifyingMetadataFile(string inAssetPath, bool inEnabled) + { + try + { + string metaPath = AssetDatabase.GetTextMetaFilePathFromAssetPath(inAssetPath); // 获取.meta文件的路径 + string enableFlagStr = inEnabled? "1" : "0"; + + // 读取.meta文件 + // 处理WebGL + string metaContent = File.ReadAllText(metaPath); + int idxWebGLEnableFlag = GetEnabledFlagStringIndex(metaContent, "WebGL: WebGL"); + + metaContent = metaContent.Remove(idxWebGLEnableFlag, 1).Insert(idxWebGLEnableFlag, enableFlagStr); + // WeixinMiniGame + int idxWeixinMiniGameEnableFlag = GetEnabledFlagStringIndex(metaContent, "WeixinMiniGame: WeixinMiniGame"); + + metaContent = metaContent.Remove(idxWeixinMiniGameEnableFlag, 1).Insert(idxWeixinMiniGameEnableFlag, enableFlagStr); + + // 写回.meta文件 + + File.WriteAllText(metaPath, metaContent); + AssetDatabase.ImportAsset(inAssetPath, ImportAssetOptions.ForceUpdate); + } + catch (Exception ex) + { + UnityEngine.Debug.LogError($"Failed to enable plugin asset: {ex.Message}"); + } + } + private static void ProcessWxPerfBinaries() { string[] wxPerfPlugins; @@ -250,6 +300,7 @@ namespace WeChatWASM #else wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enablePerfAnalysis); #endif + SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[0], config.CompileOptions.enablePerfAnalysis); } { @@ -262,6 +313,7 @@ namespace WeChatWASM #else wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2022Plugin); #endif + SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[1], bShouldEnablePerf2022Plugin); } { @@ -274,36 +326,29 @@ namespace WeChatWASM #else wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2021Plugin); #endif + SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[2], bShouldEnablePerf2021Plugin); } - - for (int i = 0; i < wxPerfPlugins.Length; i++) - { - var importer = AssetImporter.GetAtPath(wxPerfPlugins[i]) as PluginImporter; - importer.SaveAndReimport(); - AssetDatabase.WriteImportSettingsIfDirty(wxPerfPlugins[i]); - AssetDatabase.Refresh(); - } + AssetDatabase.Refresh(); } private static bool IsCompatibleWithUnity202203OrNewer() { #if UNITY_2022_3_OR_NEWER return true; -#endif +#else return false; +#endif } static bool IsCompatibleWithUnity202103To202203() { #if UNITY_2022_3_OR_NEWER return false; -#endif - -#if !UNITY_2021_3_OR_NEWER +#elif !UNITY_2021_3_OR_NEWER return false; -#endif - +#else return true; +#endif } private static void CheckBuildTarget() diff --git a/Editor/WXPluginVersion.cs b/Editor/WXPluginVersion.cs index ddbe645b2..1e5fca506 100644 --- a/Editor/WXPluginVersion.cs +++ b/Editor/WXPluginVersion.cs @@ -2,7 +2,7 @@ namespace WeChatWASM { public class WXPluginVersion { - public static string pluginVersion = "202410150350"; // 这一行不要改他,导出的时候会自动替换 + public static string pluginVersion = "202411040727"; // 这一行不要改他,导出的时候会自动替换 } public class WXPluginConf diff --git a/Editor/wx-editor.dll b/Editor/wx-editor.dll index ec5439d6c..d4fd186b6 100644 Binary files a/Editor/wx-editor.dll and b/Editor/wx-editor.dll differ diff --git a/Editor/wx-editor.xml.meta b/Editor/wx-editor.xml.meta index 59af717ed..212186c53 100644 --- a/Editor/wx-editor.xml.meta +++ b/Editor/wx-editor.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2701881b75bb276a4f100e476837749e +guid: e3a203a0f026fa02c0462024b16c2e30 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/.DS_Store.meta b/Runtime/.DS_Store.meta index 863df764b..19a962396 100644 --- a/Runtime/.DS_Store.meta +++ b/Runtime/.DS_Store.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 59268639dec71769dda6fdc2a772fe1d +guid: 51b7a7b11330968c190c1ec465069fb7 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/Plugins/LitJson.dll b/Runtime/Plugins/LitJson.dll index 93d005589..d1ce0182a 100644 Binary files a/Runtime/Plugins/LitJson.dll and b/Runtime/Plugins/LitJson.dll differ diff --git a/Runtime/Plugins/WxPerfJsBridge.jslib.meta b/Runtime/Plugins/WxPerfJsBridge.jslib.meta index 373be8acc..fb4bbc043 100644 --- a/Runtime/Plugins/WxPerfJsBridge.jslib.meta +++ b/Runtime/Plugins/WxPerfJsBridge.jslib.meta @@ -19,7 +19,7 @@ PluginImporter: Exclude Editor: 1 Exclude Linux64: 1 Exclude OSXUniversal: 1 - Exclude WeixinMiniGame: 0 + Exclude WeixinMiniGame: 1 Exclude Win: 1 Exclude Win64: 1 - first: @@ -38,7 +38,7 @@ PluginImporter: - first: Facebook: WebGL second: - enabled: 1 + enabled: 0 settings: {} - first: Standalone: Linux64 @@ -67,12 +67,12 @@ PluginImporter: - first: WebGL: WebGL second: - enabled: 1 + enabled: 0 settings: {} - first: WeixinMiniGame: WeixinMiniGame second: - enabled: 1 + enabled: 0 settings: {} userData: assetBundleName: diff --git a/Runtime/Plugins/wx-perf.dll b/Runtime/Plugins/wx-perf.dll index 7f1ad6dfd..4976c795f 100644 Binary files a/Runtime/Plugins/wx-perf.dll and b/Runtime/Plugins/wx-perf.dll differ diff --git a/Runtime/Plugins/wx-perf.dll.meta b/Runtime/Plugins/wx-perf.dll.meta index a1d38627c..7684517d7 100644 --- a/Runtime/Plugins/wx-perf.dll.meta +++ b/Runtime/Plugins/wx-perf.dll.meta @@ -1,7 +1,75 @@ fileFormatVersion: 2 guid: f0cbdcf50f6d52cea758f1ea825443c0 -DefaultImporter: -externalObjects: {} -userData: -assetBundleName: -assetBundleVariant: \ No newline at end of file +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 1 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Editor: 0 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude WebGL: 0 + Exclude Win: 1 + Exclude Win64: 1 + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + WebGL: WebGL + second: + enabled: 1 + settings: {} + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Plugins/wx-runtime-editor.dll b/Runtime/Plugins/wx-runtime-editor.dll index 95e263bd4..6b9e5c33a 100644 Binary files a/Runtime/Plugins/wx-runtime-editor.dll and b/Runtime/Plugins/wx-runtime-editor.dll differ diff --git a/Runtime/Plugins/wx-runtime-editor.xml b/Runtime/Plugins/wx-runtime-editor.xml index 36a4246f1..ab9d6bc2f 100644 --- a/Runtime/Plugins/wx-runtime-editor.xml +++ b/Runtime/Plugins/wx-runtime-editor.xml @@ -3076,6 +3076,37 @@ 后端返回的经过json序列化后的数据 + + + + 支付原串 + 具体支付参数见下面的signData,需要将数据以json格式传递 + signData例子: + '{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}' + + + + + 用户态签名 + signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D) + 可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4) + + + + + 接口调用结束的回调函数(调用成功、失败都会执行) + + + + + 接口调用失败的回调函数 + + + + + 接口调用成功的回调函数 + + 小程序账号信息 @@ -8462,106 +8493,6 @@ 调用成功信息 - - - - 支付原串 - 具体支付参数见下面的signData,需要将数据以json格式传递 - signData例子: - '{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}' - - - - - 用户态签名 - signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D) - 可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4) - - - - - 接口调用结束的回调函数(调用成功、失败都会执行) - - - - - 接口调用失败的回调函数 - - - - - 接口调用成功的回调函数 - - - - - 购买数量 - - - - - 币种 - 可选值: - - 'CNY': 人民币; - - - - - 道具单价(分) - 用来校验价格与后台道具价格是否一致,避免用户在业务商城页看到的价格与实际价格不一致导致投诉 - - - - - 支付的类型 - 不同的支付类型有各自额外要传的附加参数 - - - - - 在米大师侧申请的应用id - mp-支付基础配置中的offerid - - - - - 业务订单号 - 每个订单号只能使用一次,重复使用会失败(极端情况不保证唯一,不建议业务强依赖唯一性)。 - 要求32个字符内,只能是数字、大小写字母、符号 _-|*@组成,不能以下划线(_)开头。 - 若没有传入,则平台会自动填充一个,并以下划线开头。 - - - - - 道具ID - - - - - 透传数据 - 发货通知时会透传给开发者 - - - - - 环境配置 - 可选值: - - 0: 米大师正式环境; - - 1: 米大师沙箱环境; - - - - - 平台 - 可选值: - - 'android': 安卓; - - - - - 分区ID - - 需要订阅的消息模板的id的集合,一次调用最多可订阅3条消息(注意:iOS客户端7.0.6版本、Android客户端7.0.7版本之后的一次性订阅/长期订阅才支持多个模板消息,iOS客户端7.0.5版本、Android客户端7.0.6版本之前的一次订阅只支持一个模板消息)消息模板id在[微信公众平台(mp.weixin.qq.com)-功能-订阅消息]中配置。每个tmplId对应的模板标题需要不相同,否则会被过滤。 diff --git a/Runtime/Plugins/wx-runtime-editor.xml.meta b/Runtime/Plugins/wx-runtime-editor.xml.meta index 6958708a4..28a3f3ff4 100644 --- a/Runtime/Plugins/wx-runtime-editor.xml.meta +++ b/Runtime/Plugins/wx-runtime-editor.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: deb0171acd79c5a448225b32e9b9a835 +guid: e433b3740527c2a62e32be2cb3642757 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/Plugins/wx-runtime.dll b/Runtime/Plugins/wx-runtime.dll index 2a331753b..e29bddf92 100644 Binary files a/Runtime/Plugins/wx-runtime.dll and b/Runtime/Plugins/wx-runtime.dll differ diff --git a/Runtime/Plugins/wx-runtime.xml b/Runtime/Plugins/wx-runtime.xml index 5c9172b40..110617077 100644 --- a/Runtime/Plugins/wx-runtime.xml +++ b/Runtime/Plugins/wx-runtime.xml @@ -3082,6 +3082,37 @@ 后端返回的经过json序列化后的数据 + + + + 支付原串 + 具体支付参数见下面的signData,需要将数据以json格式传递 + signData例子: + '{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}' + + + + + 用户态签名 + signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D) + 可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4) + + + + + 接口调用结束的回调函数(调用成功、失败都会执行) + + + + + 接口调用失败的回调函数 + + + + + 接口调用成功的回调函数 + + 小程序账号信息 @@ -8468,106 +8499,6 @@ 调用成功信息 - - - - 支付原串 - 具体支付参数见下面的signData,需要将数据以json格式传递 - signData例子: - '{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}' - - - - - 用户态签名 - signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D) - 可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4) - - - - - 接口调用结束的回调函数(调用成功、失败都会执行) - - - - - 接口调用失败的回调函数 - - - - - 接口调用成功的回调函数 - - - - - 购买数量 - - - - - 币种 - 可选值: - - 'CNY': 人民币; - - - - - 道具单价(分) - 用来校验价格与后台道具价格是否一致,避免用户在业务商城页看到的价格与实际价格不一致导致投诉 - - - - - 支付的类型 - 不同的支付类型有各自额外要传的附加参数 - - - - - 在米大师侧申请的应用id - mp-支付基础配置中的offerid - - - - - 业务订单号 - 每个订单号只能使用一次,重复使用会失败(极端情况不保证唯一,不建议业务强依赖唯一性)。 - 要求32个字符内,只能是数字、大小写字母、符号 _-|*@组成,不能以下划线(_)开头。 - 若没有传入,则平台会自动填充一个,并以下划线开头。 - - - - - 道具ID - - - - - 透传数据 - 发货通知时会透传给开发者 - - - - - 环境配置 - 可选值: - - 0: 米大师正式环境; - - 1: 米大师沙箱环境; - - - - - 平台 - 可选值: - - 'android': 安卓; - - - - - 分区ID - - 需要订阅的消息模板的id的集合,一次调用最多可订阅3条消息(注意:iOS客户端7.0.6版本、Android客户端7.0.7版本之后的一次性订阅/长期订阅才支持多个模板消息,iOS客户端7.0.5版本、Android客户端7.0.6版本之前的一次订阅只支持一个模板消息)消息模板id在[微信公众平台(mp.weixin.qq.com)-功能-订阅消息]中配置。每个tmplId对应的模板标题需要不相同,否则会被过滤。 diff --git a/Runtime/Plugins/wx-runtime.xml.meta b/Runtime/Plugins/wx-runtime.xml.meta index 1caddd9d0..c9a37364b 100644 --- a/Runtime/Plugins/wx-runtime.xml.meta +++ b/Runtime/Plugins/wx-runtime.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b13c32882e7c3ffa83febc23430255a3 +guid: aafa0abf815bb0845a4166c5f523605c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/WXRuntimeExtDef.cs b/Runtime/WXRuntimeExtDef.cs index abeb85aa4..6fd6dbec2 100644 --- a/Runtime/WXRuntimeExtDef.cs +++ b/Runtime/WXRuntimeExtDef.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using UnityEngine; +#if PLATFORM_WEIXINMINIGAME || PLATFORM_WEBGL || UNITY_EDITOR namespace WeChatWASM { public class WXRuntimeExtDef @@ -109,11 +110,11 @@ namespace WeChatWASM /* WXRuntimeExtDef.RegisterAction("xxx", (args) => { - #if UNITY_2018 +#if UNITY_2018 return 1; - #else +#else return 0; - #endif +#endif }); */ WXRuntimeExtEnvDef.RegisterAction("Unity.GetObjectInstanceID", (args) => @@ -130,4 +131,6 @@ namespace WeChatWASM } } -} \ No newline at end of file +} + +#endif \ No newline at end of file diff --git a/Runtime/WXSDKPerf/WXPerfEngine.cs b/Runtime/WXSDKPerf/WXPerfEngine.cs index 1327a8132..8e67e11c3 100644 --- a/Runtime/WXSDKPerf/WXPerfEngine.cs +++ b/Runtime/WXSDKPerf/WXPerfEngine.cs @@ -1,4 +1,3 @@ -#if ENABLE_WX_PERF_FEATURE using System; using System.Diagnostics; @@ -7,8 +6,11 @@ using System.Runtime.InteropServices; using System.Xml; using UnityEngine; using UnityEngine.Scripting; -using WXPerf; +#if PLATFORM_WEIXINMINIGAME || PLATFORM_WEBGL || UNITY_EDITOR + + +#if ENABLE_WX_PERF_FEATURE namespace WXSDKPerf { [Preserve] @@ -22,11 +24,10 @@ namespace WXSDKPerf { #if UNITY_EDITOR return; -#endif - +#else m_PerfEngineImplementation = new WXPerfEngine_Implementation(); - m_PerfEngineImplementation.StartPerfEngine(); +#endif } @@ -34,7 +35,7 @@ namespace WXSDKPerf { #if UNITY_EDITOR return; -#endif +#else if (m_PerfEngineImplementation == null) { UnityEngine.Debug.LogError("Annotation: Invalid m_PerfEngineImplementation! "); @@ -42,8 +43,11 @@ namespace WXSDKPerf } m_PerfEngineImplementation.Annotation(InAnnotationString); +#endif } } } +#endif + #endif // ENABLE_WX_PERF_FEATURE \ No newline at end of file diff --git a/Runtime/wechat-default/check-version.js.meta b/Runtime/wechat-default/check-version.js.meta index 1a6375751..679436278 100644 --- a/Runtime/wechat-default/check-version.js.meta +++ b/Runtime/wechat-default/check-version.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f1b393ef78dade5bc0dcfb854c8193bf +guid: d2311874dc4a94ea00c7d43831d03676 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/data-package/game.js.meta b/Runtime/wechat-default/data-package/game.js.meta index ed000f5e4..b4c9c0bd6 100644 --- a/Runtime/wechat-default/data-package/game.js.meta +++ b/Runtime/wechat-default/data-package/game.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fc16be25ff787cc53f54a068ec8daabe +guid: 2d716a799f51b6495fb456d51cb59627 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/events.js.meta b/Runtime/wechat-default/events.js.meta index cd99b5879..884195a7d 100644 --- a/Runtime/wechat-default/events.js.meta +++ b/Runtime/wechat-default/events.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0178331e6887ed11647ae193640952a0 +guid: 5ddc4144c300512f51c3ea43dd831d36 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/game.js.meta b/Runtime/wechat-default/game.js.meta index acdf4866a..ccf1873db 100644 --- a/Runtime/wechat-default/game.js.meta +++ b/Runtime/wechat-default/game.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9f393abf872c627cdfd427ad2265d3a0 +guid: 50a53847acbebfa2579e447d1c529038 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/game.json b/Runtime/wechat-default/game.json index 47b3f18d8..2ab15876f 100644 --- a/Runtime/wechat-default/game.json +++ b/Runtime/wechat-default/game.json @@ -23,7 +23,7 @@ ], "plugins": { "UnityPlugin": { - "version": "1.2.60", + "version": "1.2.62", "provider": "wxe5a48f1ed5f544b7", "contexts": [ { diff --git a/Runtime/wechat-default/game.json.meta b/Runtime/wechat-default/game.json.meta index 8445d0d91..70d62b10d 100644 --- a/Runtime/wechat-default/game.json.meta +++ b/Runtime/wechat-default/game.json.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 84f16d39e7f23c70ce9d8dc6e5f68b50 +guid: 1910c1b044dc96162739add94592f3b2 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/images/background.jpg.meta b/Runtime/wechat-default/images/background.jpg.meta index a865d855f..10cec2034 100644 --- a/Runtime/wechat-default/images/background.jpg.meta +++ b/Runtime/wechat-default/images/background.jpg.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 96514b224b52ab56318a55f854e19827 +guid: 86f78ad5b1c36530344ccc97f8712857 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/images/unity_logo.png.meta b/Runtime/wechat-default/images/unity_logo.png.meta index 9d7a97595..50100c754 100644 --- a/Runtime/wechat-default/images/unity_logo.png.meta +++ b/Runtime/wechat-default/images/unity_logo.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2f633150263851abdb7c51faa25aaac8 +guid: d210ac3817b498c51e3ebcbae0368491 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/data/index.js.meta b/Runtime/wechat-default/open-data/data/index.js.meta index 28007050b..a53dce2d9 100644 --- a/Runtime/wechat-default/open-data/data/index.js.meta +++ b/Runtime/wechat-default/open-data/data/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 733cb30bdce9af856d2bf637d7466c3c +guid: 342f2db47ae221709f7c68fca01b79e7 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/data/utils.js.meta b/Runtime/wechat-default/open-data/data/utils.js.meta index 3d81039e2..a4a039291 100644 --- a/Runtime/wechat-default/open-data/data/utils.js.meta +++ b/Runtime/wechat-default/open-data/data/utils.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c365a9fcd38d16de2af4fd4cb2f8dde0 +guid: bd499ac1816ee28039a6c027b5215acd DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/index.js.meta b/Runtime/wechat-default/open-data/index.js.meta index afcdfd144..e4ef47efc 100644 --- a/Runtime/wechat-default/open-data/index.js.meta +++ b/Runtime/wechat-default/open-data/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f65ee99af401e222a02ca0ff17122e7a +guid: a025515fa59628210d0e03d83254f82f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/loading.js.meta b/Runtime/wechat-default/open-data/loading.js.meta index 428f289ba..9461b10b7 100644 --- a/Runtime/wechat-default/open-data/loading.js.meta +++ b/Runtime/wechat-default/open-data/loading.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c83ac7fa3f62640d417e8ec258e13ff1 +guid: 19e795c8104068f7fdc77232e673dd1c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/avatar.png.meta b/Runtime/wechat-default/open-data/render/image/avatar.png.meta index 77c868a53..97608862f 100644 --- a/Runtime/wechat-default/open-data/render/image/avatar.png.meta +++ b/Runtime/wechat-default/open-data/render/image/avatar.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2725e0a29e6d3e24c598fc6403a89a88 +guid: f70a1d54899d7cd96793afc37e7f78ea DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/button1.png.meta b/Runtime/wechat-default/open-data/render/image/button1.png.meta index 0528dbe5c..5ab424dbc 100644 --- a/Runtime/wechat-default/open-data/render/image/button1.png.meta +++ b/Runtime/wechat-default/open-data/render/image/button1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5ce50916551376db2101ce99db613d6e +guid: 7bd3d752087afb941c0f7d028cfe1327 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/button2.png.meta b/Runtime/wechat-default/open-data/render/image/button2.png.meta index 522f6d8ee..b96b5e97b 100644 --- a/Runtime/wechat-default/open-data/render/image/button2.png.meta +++ b/Runtime/wechat-default/open-data/render/image/button2.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f3b3d5e9db2c13b136cc8eb596f3dfc8 +guid: 2a170222ff26c71ec64003f8c9ee961f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/button3.png.meta b/Runtime/wechat-default/open-data/render/image/button3.png.meta index 692b74f90..f107976d8 100644 --- a/Runtime/wechat-default/open-data/render/image/button3.png.meta +++ b/Runtime/wechat-default/open-data/render/image/button3.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 035e1464a1513272f96a650214ae0239 +guid: 608ef4e3a32c4137acca9fc7c7ac393b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/loading.png.meta b/Runtime/wechat-default/open-data/render/image/loading.png.meta index ca0661252..0c5a03354 100644 --- a/Runtime/wechat-default/open-data/render/image/loading.png.meta +++ b/Runtime/wechat-default/open-data/render/image/loading.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: dcf79edb988474373db44e8dafa02b50 +guid: 723280c02d6264f5c547d45d5ff84c71 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/nameBg.png.meta b/Runtime/wechat-default/open-data/render/image/nameBg.png.meta index 6e23d22bf..37ae82c6a 100644 --- a/Runtime/wechat-default/open-data/render/image/nameBg.png.meta +++ b/Runtime/wechat-default/open-data/render/image/nameBg.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e3093fd2bbd213ab809e9a736dd434aa +guid: 390551be4e995cb95597db89ff2f9cc4 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/rankAvatar.png.meta b/Runtime/wechat-default/open-data/render/image/rankAvatar.png.meta index 48d7140bc..daf490e49 100644 --- a/Runtime/wechat-default/open-data/render/image/rankAvatar.png.meta +++ b/Runtime/wechat-default/open-data/render/image/rankAvatar.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b39e3dc5869068a4010a9806f482bb62 +guid: afe82214bcafce9599d6a2877f379e01 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/rankBg.png.meta b/Runtime/wechat-default/open-data/render/image/rankBg.png.meta index 08a7cc0f0..6b57427cc 100644 --- a/Runtime/wechat-default/open-data/render/image/rankBg.png.meta +++ b/Runtime/wechat-default/open-data/render/image/rankBg.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 36854410e77a65b41818ab20902b8d94 +guid: cff337fd64c619800c5b0b9991662e2f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/shareBg.png.meta b/Runtime/wechat-default/open-data/render/image/shareBg.png.meta index 477f52177..22d2dd208 100644 --- a/Runtime/wechat-default/open-data/render/image/shareBg.png.meta +++ b/Runtime/wechat-default/open-data/render/image/shareBg.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8ccbe765469456aa907be6d7b6c3ee64 +guid: b5f8a6677527f4579e9f6209a0075d88 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/image/shareBg2.png.meta b/Runtime/wechat-default/open-data/render/image/shareBg2.png.meta index 11aab3c3d..3ed573f44 100644 --- a/Runtime/wechat-default/open-data/render/image/shareBg2.png.meta +++ b/Runtime/wechat-default/open-data/render/image/shareBg2.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 1e121b5108e8062c46ed2d34c614f7da +guid: c1a3057f727debdecf26be62c644bc0b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/styles/friendRank.js.meta b/Runtime/wechat-default/open-data/render/styles/friendRank.js.meta index 670478a00..a4a5d8539 100644 --- a/Runtime/wechat-default/open-data/render/styles/friendRank.js.meta +++ b/Runtime/wechat-default/open-data/render/styles/friendRank.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5f144cc9a6070be647f5b30d5c88aabd +guid: 26acbccf2236d20bdaddb9390fdfa5fd DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/styles/tips.js.meta b/Runtime/wechat-default/open-data/render/styles/tips.js.meta index 74cbe5c5e..b021c85f7 100644 --- a/Runtime/wechat-default/open-data/render/styles/tips.js.meta +++ b/Runtime/wechat-default/open-data/render/styles/tips.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 64d28d751f5d4cb6add5678fe96e01f7 +guid: 4b98a2ba476fd7864812982b83eaa713 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/tpls/friendRank.js.meta b/Runtime/wechat-default/open-data/render/tpls/friendRank.js.meta index 265bb0d5b..34acf4ff5 100644 --- a/Runtime/wechat-default/open-data/render/tpls/friendRank.js.meta +++ b/Runtime/wechat-default/open-data/render/tpls/friendRank.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3922b8a263c7c9cfe07031c8140d2050 +guid: 116ee15c009dfc3248ef505a39c26d0d DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/render/tpls/tips.js.meta b/Runtime/wechat-default/open-data/render/tpls/tips.js.meta index e198d7f26..e9ce6d43a 100644 --- a/Runtime/wechat-default/open-data/render/tpls/tips.js.meta +++ b/Runtime/wechat-default/open-data/render/tpls/tips.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 38a36486cdc1fc9c55c49d57cc788fb3 +guid: 5cfc3f5d3a90666149e85e403bf6573b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugin-config.js.meta b/Runtime/wechat-default/plugin-config.js.meta index 45e7ed2f8..db6d82e00 100644 --- a/Runtime/wechat-default/plugin-config.js.meta +++ b/Runtime/wechat-default/plugin-config.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: daccef2daed2f16a7183591ff3277f96 +guid: 41001577c9a78b8317f71bb80afa0dae DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugins/check-update.js.meta b/Runtime/wechat-default/plugins/check-update.js.meta index fb8bada9e..ea94b4bec 100644 --- a/Runtime/wechat-default/plugins/check-update.js.meta +++ b/Runtime/wechat-default/plugins/check-update.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c2ee6a9614b6c58988836492b6166e35 +guid: a0d677cec1c1ab55310f3c382d8929c9 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugins/screen-adapter.js.meta b/Runtime/wechat-default/plugins/screen-adapter.js.meta index a872c57e4..c58b5e1d8 100644 --- a/Runtime/wechat-default/plugins/screen-adapter.js.meta +++ b/Runtime/wechat-default/plugins/screen-adapter.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 7e201f1c30110a775a18bc99bd3ab6c2 +guid: 5ca63e840655e846809159bd7d7df494 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/project.config.json.meta b/Runtime/wechat-default/project.config.json.meta index d5b094d06..a2bbe4a55 100644 --- a/Runtime/wechat-default/project.config.json.meta +++ b/Runtime/wechat-default/project.config.json.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b58c06efc11b27a237cf83fb5dd966fc +guid: 47259723474bd01b14b00c5eff7133e0 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/texture-config.js.meta b/Runtime/wechat-default/texture-config.js.meta index 8217ca12b..7b500c498 100644 --- a/Runtime/wechat-default/texture-config.js.meta +++ b/Runtime/wechat-default/texture-config.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 1c9577bb73996409645310d63a86c52b +guid: 03d1c9e0dc2aed1343cec8e2007e3b73 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-namespace.js.meta b/Runtime/wechat-default/unity-namespace.js.meta index f7aa09dfc..1b16b60da 100644 --- a/Runtime/wechat-default/unity-namespace.js.meta +++ b/Runtime/wechat-default/unity-namespace.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: bf73bf46b313ad1a8068ebd85107b652 +guid: 3872e7196ab19a21d90009628900b8b5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/TCPSocket/index.js.meta b/Runtime/wechat-default/unity-sdk/TCPSocket/index.js.meta index 5a43110f1..aae1a18e3 100644 --- a/Runtime/wechat-default/unity-sdk/TCPSocket/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/TCPSocket/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 76cab559f1d77bf8fb4d58df8b3956dd +guid: 1cb019a080c04c2b276f3dee5cac19a9 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/UDPSocket/index.js.meta b/Runtime/wechat-default/unity-sdk/UDPSocket/index.js.meta index ab18a5748..5869397fb 100644 --- a/Runtime/wechat-default/unity-sdk/UDPSocket/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/UDPSocket/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 445605bfb23c89b4026a9b6b80f41ce0 +guid: 85f124cf237fc09f183b910c5130527a DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/ad.js.meta b/Runtime/wechat-default/unity-sdk/ad.js.meta index d2ed00c6a..0dd174594 100644 --- a/Runtime/wechat-default/unity-sdk/ad.js.meta +++ b/Runtime/wechat-default/unity-sdk/ad.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: af2ab291d5d840cbe9940eb32af6f7e7 +guid: e916f2a5aa0353e05aa9d8b5ae58e354 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/common.js.meta b/Runtime/wechat-default/unity-sdk/audio/common.js.meta index de8eb5863..4bc35a536 100644 --- a/Runtime/wechat-default/unity-sdk/audio/common.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/common.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 83edae718c7357384e86ea37b857fe3b +guid: 66e784b8987f2e4e9c16bb421324317c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/const.js.meta b/Runtime/wechat-default/unity-sdk/audio/const.js.meta index f83517ab0..3e5cc16aa 100644 --- a/Runtime/wechat-default/unity-sdk/audio/const.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/const.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b8b94657d8bf230f0e05310cf5e7e536 +guid: bc55294fa3a745212ab5a8c73c0f6db1 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/index.js.meta b/Runtime/wechat-default/unity-sdk/audio/index.js.meta index b3447a77b..3f9ab093d 100644 --- a/Runtime/wechat-default/unity-sdk/audio/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 180085702f5019fa7845de9562da0bfe +guid: e50f2e594afb5d9f952e6446e4e87919 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/inner-audio.js.meta b/Runtime/wechat-default/unity-sdk/audio/inner-audio.js.meta index fdfa3864d..f5db9acc3 100644 --- a/Runtime/wechat-default/unity-sdk/audio/inner-audio.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/inner-audio.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 4f3ed26ef74d6fce3094a4dcbce1cdba +guid: c64ab5a32c7da79b6abca0cb3a74c580 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/store.js.meta b/Runtime/wechat-default/unity-sdk/audio/store.js.meta index 337d14342..2fddc7936 100644 --- a/Runtime/wechat-default/unity-sdk/audio/store.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/store.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 30912d767a5937cca42969bd669bde4b +guid: e28c2f5c64f210c6779bd3ff5cddb145 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/unity-audio.js.meta b/Runtime/wechat-default/unity-sdk/audio/unity-audio.js.meta index 490dbef93..a486b1890 100644 --- a/Runtime/wechat-default/unity-sdk/audio/unity-audio.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/unity-audio.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c56330797df45150816df5a1f8c1e2d0 +guid: b9aaf719c4fd46902355ef347eb34e0b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/audio/utils.js.meta b/Runtime/wechat-default/unity-sdk/audio/utils.js.meta index 209cb9bd9..18b15775e 100644 --- a/Runtime/wechat-default/unity-sdk/audio/utils.js.meta +++ b/Runtime/wechat-default/unity-sdk/audio/utils.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2d0eb895a0fe99788cca0842a500a8a5 +guid: 3db8f68d1d25292db608baef85701986 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/authorize.js.meta b/Runtime/wechat-default/unity-sdk/authorize.js.meta index 4185b1aca..a8ed7a2da 100644 --- a/Runtime/wechat-default/unity-sdk/authorize.js.meta +++ b/Runtime/wechat-default/unity-sdk/authorize.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9aae33723ea97aba8f3abe6ff7f0d62e +guid: 56bd6a3056b1de91e1dce790ab6b223e DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/bluetooth/index.js.meta b/Runtime/wechat-default/unity-sdk/bluetooth/index.js.meta index 92efb6b71..e13e6c07b 100644 --- a/Runtime/wechat-default/unity-sdk/bluetooth/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/bluetooth/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3e884a2a30ce3cc097ffd54ea0446aad +guid: d93992b807f46eb96f6fd39ae4f525af DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/camera.js.meta b/Runtime/wechat-default/unity-sdk/camera.js.meta index 1e6c25d0e..2b9170109 100644 --- a/Runtime/wechat-default/unity-sdk/camera.js.meta +++ b/Runtime/wechat-default/unity-sdk/camera.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b3e097bc517c91a7dc69827dec5a19ff +guid: 6e81f9c9021b7f29b625ac9a689e2f17 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/canvas-context.js.meta b/Runtime/wechat-default/unity-sdk/canvas-context.js.meta index 226427411..e997f79e8 100644 --- a/Runtime/wechat-default/unity-sdk/canvas-context.js.meta +++ b/Runtime/wechat-default/unity-sdk/canvas-context.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 547aeca36e86bbaefb514da771cbfec5 +guid: 80ad49560552853b8f6815538a0db694 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/canvas.js.meta b/Runtime/wechat-default/unity-sdk/canvas.js.meta index de23780fb..5cf4bd2e8 100644 --- a/Runtime/wechat-default/unity-sdk/canvas.js.meta +++ b/Runtime/wechat-default/unity-sdk/canvas.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e69eabfb3adb5c5562835d2c1208ecb2 +guid: db77ba6a64e973049c6b09fd6f44605b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/chat.js.meta b/Runtime/wechat-default/unity-sdk/chat.js.meta index 17698e650..82e129e5c 100644 --- a/Runtime/wechat-default/unity-sdk/chat.js.meta +++ b/Runtime/wechat-default/unity-sdk/chat.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 01c9833f8cabe5df79fabb4aa23e06ef +guid: 99cf201cadde50df6298f2240fa5669c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/cloud.js.meta b/Runtime/wechat-default/unity-sdk/cloud.js.meta index 6c078aae0..2f067d996 100644 --- a/Runtime/wechat-default/unity-sdk/cloud.js.meta +++ b/Runtime/wechat-default/unity-sdk/cloud.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 86d1da141bb92c1140fa3a6d19ea3d42 +guid: 18fbc146cab03db7746cea37c1956c06 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/conf.js.meta b/Runtime/wechat-default/unity-sdk/conf.js.meta index cec75d03c..24f60ca8e 100644 --- a/Runtime/wechat-default/unity-sdk/conf.js.meta +++ b/Runtime/wechat-default/unity-sdk/conf.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2a46986b52e6999923023724b0a2bcaf +guid: 2fc47351a4b667cff7372101cf230106 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/file-info.js.meta b/Runtime/wechat-default/unity-sdk/file-info.js.meta index da665675b..d43a9245f 100644 --- a/Runtime/wechat-default/unity-sdk/file-info.js.meta +++ b/Runtime/wechat-default/unity-sdk/file-info.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 082e3174a1e02c518718974d86179e3e +guid: 275bda9aec0b5b21475a24231743b8c3 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/fix.js.meta b/Runtime/wechat-default/unity-sdk/fix.js.meta index df0695a78..4e30769e6 100644 --- a/Runtime/wechat-default/unity-sdk/fix.js.meta +++ b/Runtime/wechat-default/unity-sdk/fix.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 077d0e43de8c0df33f27a525ec2fbf4f +guid: 35243ad393d44d69550935a27b0b0763 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/font/fix-cmap.js.meta b/Runtime/wechat-default/unity-sdk/font/fix-cmap.js.meta index d25f8afd3..faf4e8bc6 100644 --- a/Runtime/wechat-default/unity-sdk/font/fix-cmap.js.meta +++ b/Runtime/wechat-default/unity-sdk/font/fix-cmap.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5eee8938bfe99d97838d4857b90915b8 +guid: 6ac143f47a65199573b78cbcf1f3072e DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/font/index.js.meta b/Runtime/wechat-default/unity-sdk/font/index.js.meta index 4daa0ece0..a88548904 100644 --- a/Runtime/wechat-default/unity-sdk/font/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/font/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: db72929e346c2c3e575c07f3c6f0a85b +guid: 91c7424afffcf565251c825fda9a90f5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/font/read-metrics.js.meta b/Runtime/wechat-default/unity-sdk/font/read-metrics.js.meta index ba525ae82..ea4799eed 100644 --- a/Runtime/wechat-default/unity-sdk/font/read-metrics.js.meta +++ b/Runtime/wechat-default/unity-sdk/font/read-metrics.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: dbd5fa97cfcd668cc4a2821c78eaac40 +guid: 7c0d344cf8eff27463c99e4f9f1248e5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/font/split-sc.js.meta b/Runtime/wechat-default/unity-sdk/font/split-sc.js.meta index e5782c72c..f027226a5 100644 --- a/Runtime/wechat-default/unity-sdk/font/split-sc.js.meta +++ b/Runtime/wechat-default/unity-sdk/font/split-sc.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d0fda9130f23321eb969ce11da87d2b3 +guid: 5081f9f01cd0c76ea9ee6017971a5934 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/font/util.js.meta b/Runtime/wechat-default/unity-sdk/font/util.js.meta index 8cf5dfa82..de25296d6 100644 --- a/Runtime/wechat-default/unity-sdk/font/util.js.meta +++ b/Runtime/wechat-default/unity-sdk/font/util.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 45b0cfb3076294e50993342cb43ae49f +guid: 2d313145e3289f3b6ca178e6e2e1a4fd DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/fs.js.meta b/Runtime/wechat-default/unity-sdk/fs.js.meta index 841d892be..70625e34a 100644 --- a/Runtime/wechat-default/unity-sdk/fs.js.meta +++ b/Runtime/wechat-default/unity-sdk/fs.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2a40251d530e657c649fa324357f2627 +guid: 6f45a4dadd5417bcf9b8ffc34727b11c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/game-club.js.meta b/Runtime/wechat-default/unity-sdk/game-club.js.meta index 0270d1657..75df1577f 100644 --- a/Runtime/wechat-default/unity-sdk/game-club.js.meta +++ b/Runtime/wechat-default/unity-sdk/game-club.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2494ae984b51d0b242e2e14abb51e3b5 +guid: 2995e9422a78f9b446ad2b8d828b8b7a DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/game-recorder.js.meta b/Runtime/wechat-default/unity-sdk/game-recorder.js.meta index 889a54b57..074d048fc 100644 --- a/Runtime/wechat-default/unity-sdk/game-recorder.js.meta +++ b/Runtime/wechat-default/unity-sdk/game-recorder.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9c3833db196385e83571894ec17c3f82 +guid: edee549778f6e5a605d7eac973a92901 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/gyroscope/index.js.meta b/Runtime/wechat-default/unity-sdk/gyroscope/index.js.meta index 6b5ade3e9..15d495908 100644 --- a/Runtime/wechat-default/unity-sdk/gyroscope/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/gyroscope/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3de96e0535fe34f20da1eb8c54b39045 +guid: 1520bee964ccf284daf03eb301a4f55f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/index.js.meta b/Runtime/wechat-default/unity-sdk/index.js.meta index 308fa486c..6256d1340 100644 --- a/Runtime/wechat-default/unity-sdk/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e14373a8ff216c502a1ff987a75f6483 +guid: 2d6169f975dae55f1bb4c9b8cc79ec76 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/logger.js.meta b/Runtime/wechat-default/unity-sdk/logger.js.meta index 6ec684c69..80c010730 100644 --- a/Runtime/wechat-default/unity-sdk/logger.js.meta +++ b/Runtime/wechat-default/unity-sdk/logger.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 34e51ad900869c5a08d9823105615ad9 +guid: a5c0ca4cddc950fbcc8c92414812f928 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/mobileKeyboard/index.js.meta b/Runtime/wechat-default/unity-sdk/mobileKeyboard/index.js.meta index 3b8f30c97..ba4c81a38 100644 --- a/Runtime/wechat-default/unity-sdk/mobileKeyboard/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/mobileKeyboard/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ffc7478b58bf6e349cd1034fb4b1f06e +guid: 9934e0fa6e3d96c79c00c3b0fcdde946 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/module-helper.js.meta b/Runtime/wechat-default/unity-sdk/module-helper.js.meta index 59aa3434a..bb4c5e639 100644 --- a/Runtime/wechat-default/unity-sdk/module-helper.js.meta +++ b/Runtime/wechat-default/unity-sdk/module-helper.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b2cd9b736ee4b2344049fe1e0c1bec83 +guid: fa6bda761b657821aab7692446081728 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/open-data.js.meta b/Runtime/wechat-default/unity-sdk/open-data.js.meta index c33e37dc4..d74507543 100644 --- a/Runtime/wechat-default/unity-sdk/open-data.js.meta +++ b/Runtime/wechat-default/unity-sdk/open-data.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9d5132592a90096bb8900c20ded6a511 +guid: 5fcaafcf94da58e90d1098ef5058e680 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/recorder.js.meta b/Runtime/wechat-default/unity-sdk/recorder.js.meta index 55180fa41..edbf7e47f 100644 --- a/Runtime/wechat-default/unity-sdk/recorder.js.meta +++ b/Runtime/wechat-default/unity-sdk/recorder.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ee931340fdc889991127fb244ebddbb3 +guid: 7f965b1127cc849f189d2cdebb36ad4b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/resType.js.meta b/Runtime/wechat-default/unity-sdk/resType.js.meta index db949a684..11a8485fd 100644 --- a/Runtime/wechat-default/unity-sdk/resType.js.meta +++ b/Runtime/wechat-default/unity-sdk/resType.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8ac4b7f3b2e555e934247f20fd6087e8 +guid: 6c2f7d4826161aa06139738eb21f78aa DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta b/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta index 9d51037c0..79ae66c12 100644 --- a/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta +++ b/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c933a965d452dc657f8c215824f497ef +guid: 78991e1237b76419be617382a15fbd30 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/response.js.meta b/Runtime/wechat-default/unity-sdk/response.js.meta index 725e3c8d6..66535c9be 100644 --- a/Runtime/wechat-default/unity-sdk/response.js.meta +++ b/Runtime/wechat-default/unity-sdk/response.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 914ace62e611d51849d0308cc77fb959 +guid: f35642cfe91b77c73a714834c5080bc6 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/sdk.js.meta b/Runtime/wechat-default/unity-sdk/sdk.js.meta index 4bbedc92a..98a50aadd 100644 --- a/Runtime/wechat-default/unity-sdk/sdk.js.meta +++ b/Runtime/wechat-default/unity-sdk/sdk.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 29b282dbdcc265350096bd854743b5d2 +guid: 3961acb27282c9633ef7406d67b88aad DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/share.js.meta b/Runtime/wechat-default/unity-sdk/share.js.meta index 89c40140e..307a67250 100644 --- a/Runtime/wechat-default/unity-sdk/share.js.meta +++ b/Runtime/wechat-default/unity-sdk/share.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: cb07939206de55711680f2f4cdcb20d2 +guid: df9d98982469cbd80997381db171f7ef DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/storage.js.meta b/Runtime/wechat-default/unity-sdk/storage.js.meta index 8d30cb03a..6f55d2885 100644 --- a/Runtime/wechat-default/unity-sdk/storage.js.meta +++ b/Runtime/wechat-default/unity-sdk/storage.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 632d7b006ac9ff9d8be0b59ecd2333f3 +guid: c8e702b2d1e425bfb8d09624df9a3fd1 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/texture.js.meta b/Runtime/wechat-default/unity-sdk/texture.js.meta index b5eca6ed2..43773fbb1 100644 --- a/Runtime/wechat-default/unity-sdk/texture.js.meta +++ b/Runtime/wechat-default/unity-sdk/texture.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b5d40aa306d8d5ab881f9e13eb89a840 +guid: 36dac82df33578a77e3c0d64cb32efff DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/touch/index.js.meta b/Runtime/wechat-default/unity-sdk/touch/index.js.meta index 2a4cf4bac..e19666ce9 100644 --- a/Runtime/wechat-default/unity-sdk/touch/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/touch/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fde0341810e163affe33aae455b00e74 +guid: 12c949c5089994f07147344b5fd0302b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/upload-file.js.meta b/Runtime/wechat-default/unity-sdk/upload-file.js.meta index 23c0ddc2e..04fec5a52 100644 --- a/Runtime/wechat-default/unity-sdk/upload-file.js.meta +++ b/Runtime/wechat-default/unity-sdk/upload-file.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8acb9a885754a8f3985b995a7800f9fa +guid: f7ca7c95447b35a1117294e3fa5ae0e3 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/userinfo.js.meta b/Runtime/wechat-default/unity-sdk/userinfo.js.meta index 337c49936..49ae0494b 100644 --- a/Runtime/wechat-default/unity-sdk/userinfo.js.meta +++ b/Runtime/wechat-default/unity-sdk/userinfo.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3d912d2a766441effc1ee86254024c40 +guid: 7fb7a06ccd22688103558588e1e40fb6 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/util.js.meta b/Runtime/wechat-default/unity-sdk/util.js.meta index 94e800c48..10fb4338b 100644 --- a/Runtime/wechat-default/unity-sdk/util.js.meta +++ b/Runtime/wechat-default/unity-sdk/util.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c8e836ce61b863e0864e86dd99450d35 +guid: 001e1e83f4a4c8156a1615e1bf90bf9c DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/utils.js.meta b/Runtime/wechat-default/unity-sdk/utils.js.meta index 2cf132620..e461f05d4 100644 --- a/Runtime/wechat-default/unity-sdk/utils.js.meta +++ b/Runtime/wechat-default/unity-sdk/utils.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d5c6516c1675d27af7b8fb0adb463c4d +guid: edf88ded22bdd00c7331462789253d27 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/video.js.meta b/Runtime/wechat-default/unity-sdk/video.js.meta index e38b4aaa8..44d341d23 100644 --- a/Runtime/wechat-default/unity-sdk/video.js.meta +++ b/Runtime/wechat-default/unity-sdk/video.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2843f4a676499208f79ca1e8e5a64473 +guid: 3fafd49a7fef9ea03d03408b05b22420 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/video/index.js.meta b/Runtime/wechat-default/unity-sdk/video/index.js.meta index e44e4b933..56fba685c 100644 --- a/Runtime/wechat-default/unity-sdk/video/index.js.meta +++ b/Runtime/wechat-default/unity-sdk/video/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 260de32224049d584b76982eea30887e +guid: bb8ce06af6f666fecab8b9fd3018d0f8 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/wasmcode/game.js.meta b/Runtime/wechat-default/wasmcode/game.js.meta index 106f5ae8f..a2cd00a76 100644 --- a/Runtime/wechat-default/wasmcode/game.js.meta +++ b/Runtime/wechat-default/wasmcode/game.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 85678b8d5cf4ff705460a1dcb97bc1bb +guid: e62183b1c99bda7b3dd099998bcf3c81 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/weapp-adapter.js.meta b/Runtime/wechat-default/weapp-adapter.js.meta index 671de8c82..78215489f 100644 --- a/Runtime/wechat-default/weapp-adapter.js.meta +++ b/Runtime/wechat-default/weapp-adapter.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 24a2c38c0792cc1ec8942500ce88e192 +guid: f6143cf3eab6be7caf18c0e0668dd6f0 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/workers/response/index.js.meta b/Runtime/wechat-default/workers/response/index.js.meta index dbb819f3b..c646f2b12 100644 --- a/Runtime/wechat-default/workers/response/index.js.meta +++ b/Runtime/wechat-default/workers/response/index.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fc93f833b3146a51a3f51a204d388fe6 +guid: 1b63b37621ade4f2ac7ae719048305a6 DefaultImporter: externalObjects: {} userData: