diff --git a/Editor/MiniGameConfig.asset b/Editor/MiniGameConfig.asset index 4e8a1d28..ab29f159 100644 --- a/Editor/MiniGameConfig.asset +++ b/Editor/MiniGameConfig.asset @@ -19,7 +19,7 @@ MonoBehaviour: assetLoadType: 0 compressDataPackage: 0 VideoUrl: - DST: + DST: /Users/hongtianyun/Documents/GitProjects/unity-wasm/SDKAdminUP/ StreamCDN: bundleHashLength: 32 bundlePathIdentifier: StreamingAssets; diff --git a/Editor/WXConvertCore.cs b/Editor/WXConvertCore.cs index 953a2c20..275d4847 100644 --- a/Editor/WXConvertCore.cs +++ b/Editor/WXConvertCore.cs @@ -118,7 +118,7 @@ namespace WeChatWASM CheckBuildTarget(); Init(); - ProcessWxPerfBinaries(); + ProcessWxPerfBinaries(); // JSLib SettingWXTextureMinJSLib(); UpdateGraphicAPI(); @@ -241,7 +241,7 @@ namespace WeChatWASM $"{jsLibRootDir}wx_perf_2021.a", }; } - + { // WxPerfJsBridge.jslib var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter; @@ -254,7 +254,7 @@ namespace WeChatWASM { // wx_perf_2022.a - bool bShouldEnablePerf2022Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202203OrNewer(); + bool bShouldEnablePerf2022Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202203OrNewer(); var wxPerf2022Importer = AssetImporter.GetAtPath(wxPerfPlugins[1]) as PluginImporter; #if PLATFORM_WEIXINMINIGAME @@ -266,7 +266,7 @@ namespace WeChatWASM { // wx_perf_2021.a - bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202103To202203(); + bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202103To202203(); var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter; #if PLATFORM_WEIXINMINIGAME @@ -422,8 +422,8 @@ namespace WeChatWASM { const string MACRO_ENABLE_WX_PERF_FEATURE = "ENABLE_WX_PERF_FEATURE"; string defineSymbols = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup); - - return (!config.CompileOptions.DevelopBuild) && (defineSymbols.IndexOf(MACRO_ENABLE_WX_PERF_FEATURE) != -1); + + return (!config.CompileOptions.DevelopBuild) && (defineSymbols.IndexOf(MACRO_ENABLE_WX_PERF_FEATURE) != -1); } private static void ConvertDotnetCode() @@ -1518,9 +1518,9 @@ namespace WeChatWASM config.FontOptions.Mathematical_Operators ? "true" : "false", customUnicodeRange, boolConfigInfo, - config.CompileOptions.DevelopBuild ? "true" : "false", - config.CompileOptions.enablePerfAnalysis ? "true" : "false", - config.ProjectConf.MemorySize.ToString(), + config.CompileOptions.DevelopBuild ? "true" : "false", + config.CompileOptions.enablePerfAnalysis ? "true" : "false", + config.ProjectConf.MemorySize.ToString(), }); List replaceList = new List(replaceArrayList); diff --git a/Editor/WXEditorSettingHelper.cs b/Editor/WXEditorSettingHelper.cs index dde0d0b3..c14a3c06 100644 --- a/Editor/WXEditorSettingHelper.cs +++ b/Editor/WXEditorSettingHelper.cs @@ -59,7 +59,7 @@ namespace WeChatWASM } private static WXEditorScriptObject config; - private static bool m_EnablePerfTool = false; + private static bool m_EnablePerfTool = false; private static string _dstCache; @@ -206,7 +206,7 @@ namespace WeChatWASM { this.formCheckbox("enablePerfAnalysis", "集成性能分析工具", "将性能分析工具集成入Development Build包中", false, null, OnPerfAnalysisFeatureToggleChanged); } - + EditorGUILayout.EndVertical(); } @@ -470,7 +470,7 @@ namespace WeChatWASM this.setData("enableProfileStats", config.CompileOptions.enableProfileStats); this.setData("enableRenderAnalysis", config.CompileOptions.enableRenderAnalysis); this.setData("brotliMT", config.CompileOptions.brotliMT); - this.setData("enablePerfAnalysis", config.CompileOptions.enablePerfAnalysis); + this.setData("enablePerfAnalysis", config.CompileOptions.enablePerfAnalysis); this.setData("autoUploadFirstBundle", true); // font options @@ -565,7 +565,7 @@ namespace WeChatWASM config.FontOptions.Mathematical_Operators = this.getDataCheckbox("Mathematical_Operators"); config.FontOptions.CustomUnicode = this.getDataInput("CustomUnicode"); - ApplyPerfAnalysisSetting(); + ApplyPerfAnalysisSetting(); } private string getDataInput(string target) @@ -703,7 +703,7 @@ namespace WeChatWASM // 针对non-dev build,取消性能分析工具的集成 if (!InNewValue) { - this.setData("enablePerfAnalysis", false); + this.setData("enablePerfAnalysis", false); } } @@ -712,7 +712,7 @@ namespace WeChatWASM // 针对non-dev build,取消性能分析工具的集成 if (!formCheckboxData["developBuild"] && InNewValue) { - this.setData("enablePerfAnalysis", false); + this.setData("enablePerfAnalysis", false); } } @@ -720,7 +720,7 @@ namespace WeChatWASM { const string MACRO_ENABLE_WX_PERF_FEATURE = "ENABLE_WX_PERF_FEATURE"; string defineSymbols = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup); - if (this.getDataCheckbox("enablePerfAnalysis") && this.getDataCheckbox("developBuild")) + if (this.getDataCheckbox("enablePerfAnalysis") && this.getDataCheckbox("developBuild")) { if (defineSymbols.IndexOf(MACRO_ENABLE_WX_PERF_FEATURE) == -1) { @@ -767,7 +767,7 @@ namespace WeChatWASM { return path; } - + return Path.Combine(projectRootPath, path); } } diff --git a/Editor/WXPluginVersion.cs b/Editor/WXPluginVersion.cs index deb389cb..2c1986e2 100644 --- a/Editor/WXPluginVersion.cs +++ b/Editor/WXPluginVersion.cs @@ -2,7 +2,7 @@ { public class WXPluginVersion { - public static string pluginVersion = "202410100241"; // 这一行不要改他,导出的时候会自动替换 + public static string pluginVersion = "202410100625"; // 这一行不要改他,导出的时候会自动替换 } public class WXPluginConf diff --git a/Editor/wx-editor.dll b/Editor/wx-editor.dll index 4b64e5ea..842da54c 100644 Binary files a/Editor/wx-editor.dll and b/Editor/wx-editor.dll differ diff --git a/Runtime/Plugins/LitJson.dll b/Runtime/Plugins/LitJson.dll index d1ce0182..93d00558 100644 Binary files a/Runtime/Plugins/LitJson.dll and b/Runtime/Plugins/LitJson.dll differ diff --git a/Runtime/Plugins/SDK-Call-JS.jslib b/Runtime/Plugins/SDK-Call-JS.jslib index 86495b1b..17a85e0b 100644 --- a/Runtime/Plugins/SDK-Call-JS.jslib +++ b/Runtime/Plugins/SDK-Call-JS.jslib @@ -176,9 +176,6 @@ WX_Login:function(conf, callbackId) { WX_MakeBluetoothPair:function(conf, callbackId) { window.WXWASMSDK.WX_MakeBluetoothPair(_WXPointer_stringify_adaptor(conf), _WXPointer_stringify_adaptor(callbackId)); }, -WX_NavigateBackMiniProgram:function(conf, callbackId) { - window.WXWASMSDK.WX_NavigateBackMiniProgram(_WXPointer_stringify_adaptor(conf), _WXPointer_stringify_adaptor(callbackId)); -}, WX_NavigateToMiniProgram:function(conf, callbackId) { window.WXWASMSDK.WX_NavigateToMiniProgram(_WXPointer_stringify_adaptor(conf), _WXPointer_stringify_adaptor(callbackId)); }, @@ -411,9 +408,6 @@ WX_OpenBusinessView:function(conf, callbackId) { WX_ExitPointerLock:function() { window.WXWASMSDK.WX_ExitPointerLock(); }, -WX_GetPhoneNumber:function(option){ - window.WXWASMSDK.WX_GetPhoneNumber(_WXPointer_stringify_adaptor(option)); -}, WX_OperateGameRecorderVideo:function(option){ window.WXWASMSDK.WX_OperateGameRecorderVideo(_WXPointer_stringify_adaptor(option)); }, diff --git a/Runtime/Plugins/wx-perf.dll b/Runtime/Plugins/wx-perf.dll index ad8fc316..086ab782 100644 Binary files a/Runtime/Plugins/wx-perf.dll and b/Runtime/Plugins/wx-perf.dll differ diff --git a/Runtime/Plugins/wx-runtime-editor.dll b/Runtime/Plugins/wx-runtime-editor.dll index 849b971e..0827504b 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 47926c8b..cd7cc8de 100644 --- a/Runtime/Plugins/wx-runtime-editor.xml +++ b/Runtime/Plugins/wx-runtime-editor.xml @@ -3124,7 +3124,7 @@ - 允许微信使用蓝牙的开关(安卓基础库 3.5.0 以上有效) + 允许微信使用蓝牙的开关(仅 iOS 有效) @@ -5829,10 +5829,8 @@ 直播状态 可选值: - - 1: 直播状态不存在(针对未开过直播的主播); - 2: 直播中; - - 3: 直播已结束; - - 4: 直播准备中(未开播); + - 3: 直播结束; @@ -6209,22 +6207,6 @@ 信号强弱,单位 dbm - - - 需要基础库: `3.5.3` - 是否处于弱网环境 - - - - - 手机号实时验证,向用户申请,并在用户同意后,快速填写和实时验证手机号 [具体说明](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/getRealtimePhoneNumber.html)。 - - - - - 当手机号快速验证或手机号实时验证额度用尽时,是否对用户展示“申请获取你的手机号,但该功能使用次数已达当前小程序上限,暂时无法使用”的提示,默认展示。 - - 接口调用结束的回调函数(调用成功、失败都会执行) @@ -6242,7 +6224,7 @@ - 是否需要用户授权隐私协议(如果开发者没有在「MP后台-设置-服务内容声明-用户隐私保护指引」中声明隐私收集类型则会返回false;如果开发者声明了隐私收集,且用户之前同意过隐私协议则会返回false;如果开发者声明了隐私收集,且用户还没同意过则返回true;如果用户之前同意过、但后来小程序又新增了隐私收集类型也会返回true) + 是否需要用户授权隐私协议(如果开发者没有在[mp后台-设置-服务内容声明-用户隐私保护指引]中声明隐私收集类型则会返回false;如果开发者声明了隐私收集,且用户之前同意过隐私协议则会返回false;如果开发者声明了隐私收集,且用户还没同意过则返回true;如果用户之前同意过、但后来小程序又新增了隐私收集类型也会返回true) @@ -6894,26 +6876,6 @@ 超时时间,单位 ms - - - 接口调用结束的回调函数(调用成功、失败都会执行) - - - - - 需要返回给上一个小程序的数据,上一个小程序可在 `App.onShow` 中获取到这份数据。 [详情](#)。 - - - - - 接口调用失败的回调函数 - - - - - 接口调用成功的回调函数 - - 要打开的小程序 appId @@ -8369,11 +8331,7 @@ | -15009 | | 虚拟支付接口错误码,由于健康系统限制,本次支付已超过限额(这种错误情况会有默认弹窗提示) | | -15010 | | 虚拟支付接口错误码,正式版小游戏不允许在沙箱环境支付 | | -15011 | | 请求的数据类型错误 | - | -15012 | | SIGNATURE错误 | | -15013 | | 代币未发布 | - | -15014 | | paysig错误 | - | -15015 | | sessionkey过期 | - | -15016 | | 道具价格错误 | | -15017 | | 订单已关闭 | | 1 | | 虚拟支付接口错误码,用户取消支付 | | 2 | | 虚拟支付接口错误码,客户端错误,判断到小程序在用户处于支付中时,又发起了一笔支付请求 | @@ -8407,11 +8365,7 @@ | -15009 | | 虚拟支付接口错误码,由于健康系统限制,本次支付已超过限额(这种错误情况会有默认弹窗提示) | | -15010 | | 虚拟支付接口错误码,正式版小游戏不允许在沙箱环境支付 | | -15011 | | 请求的数据类型错误 | - | -15012 | | SIGNATURE错误 | | -15013 | | 代币未发布 | - | -15014 | | paysig错误 | - | -15015 | | sessionkey过期 | - | -15016 | | 道具价格错误 | | -15017 | | 订单已关闭 | | 1 | | 虚拟支付接口错误码,用户取消支付 | | 2 | | 虚拟支付接口错误码,客户端错误,判断到小程序在用户处于支付中时,又发起了一笔支付请求 | @@ -9298,7 +9252,7 @@ 需要基础库: `3.2.0` - 分享样式,小程序可选 v2 + 分享样式,可选 v2 diff --git a/Runtime/Plugins/wx-runtime.dll b/Runtime/Plugins/wx-runtime.dll index 1a817d32..ed0eb110 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 48004165..052c8601 100644 --- a/Runtime/Plugins/wx-runtime.xml +++ b/Runtime/Plugins/wx-runtime.xml @@ -3130,7 +3130,7 @@ - 允许微信使用蓝牙的开关(安卓基础库 3.5.0 以上有效) + 允许微信使用蓝牙的开关(仅 iOS 有效) @@ -5835,10 +5835,8 @@ 直播状态 可选值: - - 1: 直播状态不存在(针对未开过直播的主播); - 2: 直播中; - - 3: 直播已结束; - - 4: 直播准备中(未开播); + - 3: 直播结束; @@ -6215,22 +6213,6 @@ 信号强弱,单位 dbm - - - 需要基础库: `3.5.3` - 是否处于弱网环境 - - - - - 手机号实时验证,向用户申请,并在用户同意后,快速填写和实时验证手机号 [具体说明](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/getRealtimePhoneNumber.html)。 - - - - - 当手机号快速验证或手机号实时验证额度用尽时,是否对用户展示“申请获取你的手机号,但该功能使用次数已达当前小程序上限,暂时无法使用”的提示,默认展示。 - - 接口调用结束的回调函数(调用成功、失败都会执行) @@ -6248,7 +6230,7 @@ - 是否需要用户授权隐私协议(如果开发者没有在「MP后台-设置-服务内容声明-用户隐私保护指引」中声明隐私收集类型则会返回false;如果开发者声明了隐私收集,且用户之前同意过隐私协议则会返回false;如果开发者声明了隐私收集,且用户还没同意过则返回true;如果用户之前同意过、但后来小程序又新增了隐私收集类型也会返回true) + 是否需要用户授权隐私协议(如果开发者没有在[mp后台-设置-服务内容声明-用户隐私保护指引]中声明隐私收集类型则会返回false;如果开发者声明了隐私收集,且用户之前同意过隐私协议则会返回false;如果开发者声明了隐私收集,且用户还没同意过则返回true;如果用户之前同意过、但后来小程序又新增了隐私收集类型也会返回true) @@ -6900,26 +6882,6 @@ 超时时间,单位 ms - - - 接口调用结束的回调函数(调用成功、失败都会执行) - - - - - 需要返回给上一个小程序的数据,上一个小程序可在 `App.onShow` 中获取到这份数据。 [详情](#)。 - - - - - 接口调用失败的回调函数 - - - - - 接口调用成功的回调函数 - - 要打开的小程序 appId @@ -8375,11 +8337,7 @@ | -15009 | | 虚拟支付接口错误码,由于健康系统限制,本次支付已超过限额(这种错误情况会有默认弹窗提示) | | -15010 | | 虚拟支付接口错误码,正式版小游戏不允许在沙箱环境支付 | | -15011 | | 请求的数据类型错误 | - | -15012 | | SIGNATURE错误 | | -15013 | | 代币未发布 | - | -15014 | | paysig错误 | - | -15015 | | sessionkey过期 | - | -15016 | | 道具价格错误 | | -15017 | | 订单已关闭 | | 1 | | 虚拟支付接口错误码,用户取消支付 | | 2 | | 虚拟支付接口错误码,客户端错误,判断到小程序在用户处于支付中时,又发起了一笔支付请求 | @@ -8413,11 +8371,7 @@ | -15009 | | 虚拟支付接口错误码,由于健康系统限制,本次支付已超过限额(这种错误情况会有默认弹窗提示) | | -15010 | | 虚拟支付接口错误码,正式版小游戏不允许在沙箱环境支付 | | -15011 | | 请求的数据类型错误 | - | -15012 | | SIGNATURE错误 | | -15013 | | 代币未发布 | - | -15014 | | paysig错误 | - | -15015 | | sessionkey过期 | - | -15016 | | 道具价格错误 | | -15017 | | 订单已关闭 | | 1 | | 虚拟支付接口错误码,用户取消支付 | | 2 | | 虚拟支付接口错误码,客户端错误,判断到小程序在用户处于支付中时,又发起了一笔支付请求 | @@ -9304,7 +9258,7 @@ 需要基础库: `3.2.0` - 分享样式,小程序可选 v2 + 分享样式,可选 v2 diff --git a/Runtime/WX.cs b/Runtime/WX.cs index 195185ef..046d53e3 100644 --- a/Runtime/WX.cs +++ b/Runtime/WX.cs @@ -719,7 +719,6 @@ namespace WeChatWASM /// wx.getNetworkType({ /// success (res) { /// const networkType = res.networkType - /// const weakNet = res.weakNet /// } /// }) /// ``` @@ -1144,28 +1143,6 @@ namespace WeChatWASM WXSDKManagerHandler.Instance.MakeBluetoothPair(callback); } - /// - /// [wx.navigateBackMiniProgram(Object object)](https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateBackMiniProgram.html) - /// 需要基础库: `3.5.6` - /// 返回到上一个小程序。只有在当前小程序是被其他小程序打开时可以调用成功。 - /// 注意:**微信客户端 iOS 6.5.9,Android 6.5.10 及以上版本支持** - /// **示例代码** - /// ```js - /// wx.navigateBackMiniProgram({ - /// extraData: { - /// foo: 'bar' - /// }, - /// success(res) { - /// // 返回成功 - /// } - /// }) - /// ``` - /// - public static void NavigateBackMiniProgram(NavigateBackMiniProgramOption callback) - { - WXSDKManagerHandler.Instance.NavigateBackMiniProgram(callback); - } - /// /// [wx.navigateToMiniProgram(Object object)](https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateToMiniProgram.html) /// 需要基础库: `2.2.0` @@ -1445,11 +1422,11 @@ namespace WeChatWASM /// | 类型 | 说明 | 最低版本 | /// |------|------| -------| /// | 小程序码 | | - /// | 微信个人码 | | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | - /// | 企业微信个人码 | | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | - /// | 普通群码 | 指仅包含微信用户的群 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | - /// | 互通群码 | 指既有微信用户也有企业微信用户的群 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | - /// | 公众号二维码 | | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | + /// | 微信个人码 | 不支持小游戏 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | + /// | 企业微信个人码 | 不支持小游戏 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | + /// | 普通群码 | 指仅包含微信用户的群,不支持小游戏 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | + /// | 互通群码 | 指既有微信用户也有企业微信用户的群,不支持小游戏 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | + /// | 公众号二维码 | 不支持小游戏 | [2.18.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) | /// **示例代码** /// ```js /// wx.previewImage({ @@ -1592,7 +1569,8 @@ namespace WeChatWASM /// /// [wx.requestMidasPayment(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPayment.html) /// 需要基础库: `2.19.2` - /// 发起购买游戏币支付请求,可参考[虚拟支付2.0游戏币](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/coins.html),虚拟支付全流程可参考[技术手册-虚拟支付篇](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/guide.html) + /// 发起购买游戏币支付请求,可参考[虚拟支付2.0游戏币](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/coins.html) + /// 虚拟支付全流程可参考[技术手册-虚拟支付篇](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/guide.html) /// **buyQuantity 限制说明** /// 购买游戏币的时候,buyQuantity 不可任意填写。需满足 buyQuantity * 游戏币单价 = 限定的价格等级。如:游戏币单价为 0.1 元,一次购买最少数量是 10。 /// 有效价格等级如下: @@ -1636,7 +1614,7 @@ namespace WeChatWASM /// /// [wx.requestMidasPaymentGameItem(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPaymentGameItem.html) /// 需要基础库: `2.19.2` - /// 发起道具直购支付请求,可参考[虚拟支付2.0道具直购](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/goods.html),虚拟支付全流程可参考[技术手册-虚拟支付篇](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/guide.html) + /// 发起道具直购支付请求,可参考[虚拟支付2.0道具直购](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/goods.html ),虚拟支付全流程可参考[技术手册-虚拟支付篇](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/guide.html) /// **示例代码** /// ```js /// wx.requestMidasPaymentGameItem({ @@ -2533,18 +2511,6 @@ namespace WeChatWASM WXSDKManagerHandler.Instance.ExitPointerLock(); } - /// - /// [wx.getPhoneNumber(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/user-info/wx.getPhoneNumber.html) - /// 手机号快速验证,向用户申请,并在用户同意后,快速填写和验证手机 [具体说明](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/getPhoneNumber.html) - /// **** - /// ## 注意事项 - /// - 用户点击后才可进行调用 - /// - public static void GetPhoneNumber(GetPhoneNumberOption option) - { - WXSDKManagerHandler.Instance.GetPhoneNumber(option); - } - /// /// [wx.operateGameRecorderVideo(Object object)](https://developers.weixin.qq.com/minigame/dev/api/game-recorder/wx.operateGameRecorderVideo.html) /// 需要基础库: `2.26.1` diff --git a/Runtime/WXRuntimeExtDef.cs b/Runtime/WXRuntimeExtDef.cs index 9da8db86..069c718b 100644 --- a/Runtime/WXRuntimeExtDef.cs +++ b/Runtime/WXRuntimeExtDef.cs @@ -15,7 +15,7 @@ namespace WeChatWASM private static void Init() { - + #if UNITY_2018_1_OR_NEWER WXRuntimeExtEnvDef.SETDEF("UNITY_2018_1_OR_NEWER", true); #else @@ -118,16 +118,16 @@ namespace WeChatWASM */ WXRuntimeExtEnvDef.RegisterAction("Unity.GetObjectInstanceID", (args) => { -#if UNITY_2021_3_OR_NEWER + #if UNITY_2021_3_OR_NEWER if (args is UnityEngine.Object unityObject) { return unityObject.GetInstanceID(); } -#endif + #endif // unityObject.GetInstanceID() would never return 0. - return 0; + return 0; }); } } - + } \ 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 2a38634a..bcef05eb 100644 --- a/Runtime/wechat-default/check-version.js.meta +++ b/Runtime/wechat-default/check-version.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e6783705c28eaef4672ca75f62b966cf +guid: c183afd1e1d7f89936d2e823090f60e7 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/data-package/game.js.meta b/Runtime/wechat-default/data-package/game.js.meta index 488762e1..c4eb1fb3 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: d332772e4e95de47e14196363ce5a03f +guid: 8e781bf261fab3ee5225c079ed4c75e0 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/events.js.meta b/Runtime/wechat-default/events.js.meta index 26d079f4..4d250900 100644 --- a/Runtime/wechat-default/events.js.meta +++ b/Runtime/wechat-default/events.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b981327dc0eb757920494ffb9fddbeeb +guid: 6e71b0635a75a5044de447edefbf8f4f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/game.js.meta b/Runtime/wechat-default/game.js.meta index 5ebef6e5..e7d1e354 100644 --- a/Runtime/wechat-default/game.js.meta +++ b/Runtime/wechat-default/game.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 21e2f58825fef3e112e6803d04a888e9 +guid: 510b7369704f93836e066d1a5f67b84e DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/game.json.meta b/Runtime/wechat-default/game.json.meta index 4b06e7f7..87c83b6b 100644 --- a/Runtime/wechat-default/game.json.meta +++ b/Runtime/wechat-default/game.json.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5b740b482e49fcc6f1d3ea73e8c4fa74 +guid: c32522e5b143a029e8fb3a06dd5b5f77 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/images/background.jpg.meta b/Runtime/wechat-default/images/background.jpg.meta index b13188e1..f4bcd616 100644 --- a/Runtime/wechat-default/images/background.jpg.meta +++ b/Runtime/wechat-default/images/background.jpg.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ba7a6e55e5e60663d2cc7c0f2302c106 +guid: 13b0c0302993a2df770116c5d71affd5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/images/unity_logo.png.meta b/Runtime/wechat-default/images/unity_logo.png.meta index d42306ef..a0b1927a 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: f7607642afad3014bcf903f59bc13df2 +guid: 4efe2ce4505847a4370cabf4b6379579 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 ea9a39ab..17b895cd 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: cf1c0ed437a569576a24459eec20212a +guid: c8372683f90b0de576fa56566a39dd01 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 62f7b1fd..dea0618c 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: a96fa6a56ecc567d6fd2e75d806fe120 +guid: fdaa4e27f7eb8e022f8412c18a13ec27 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/index.js.meta b/Runtime/wechat-default/open-data/index.js.meta index 1ef7cc83..137ea34c 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: f49034ef9e95fdd727d7c65c3d4e02dd +guid: e6fd3fc4f4154655427c4099c9b9cac2 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/open-data/loading.js.meta b/Runtime/wechat-default/open-data/loading.js.meta index 13327424..3a3b8852 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: 8cca025b002728fdebfb735721996732 +guid: 6eecefab2c5f7ed7cc9541a3c5c02c24 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 7cd8ddfc..e519ba3f 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: 99e68b6021c371a2d75e3ae609690f77 +guid: 2ce3c741ce33175dd3d78336904befa7 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 fbb988fb..5671e148 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: bcd07778b08c8d2e1f2ed63dc82404e1 +guid: 027d958ed3b9175d9c4d853a2307ad29 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 2efdf569..21aaeac6 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: 1f782627ba63dcf16b619180ac586c4f +guid: 470afd2138deb6063e598a7b1fb15b8c 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 1bd23006..e256fc46 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: 2a8c603eed0409bc2ffc8b1347deb62b +guid: 0128ca644c4082640a6bac608c096ff5 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 1c5d6eda..ecb2c387 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: 6e449de33f122dccd712a9c760e2056f +guid: 5f0b068e4ea3ce3edef3633f4efba3b4 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 b6e676e3..0a5f3002 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: 56d80d95e7f207deb70916f84eacc0fd +guid: 8fa9ce4d1239860a2ec61bd619907fa4 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 7b388c99..2c26704b 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: cab8d48cb6bea736384eef96bf54db99 +guid: 9325b46b41dcadd1637b8dff7f91fa91 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 cac632bc..3edb26b1 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: 11749a74a2b1dc933a6c989de8f45ea4 +guid: f629ceb165f2b2cf5cd2cde542b75fa4 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 165f7a16..0c99fe73 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: c0b785ece80414bef1609ff012b1b405 +guid: fad790d40ab05fe2a7b153158afffeba 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 b414cc37..9e8bb312 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: 009f5120ddbb465c0f97fc48ad20bdc2 +guid: b2abcedbd85c12221d36a2e4c5619bb5 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 fdbef4b2..a358c8ae 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: b5809448aa2282ba99457aac96684b0b +guid: a7b523b735363da76f6f70f394c1f9be 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 f1d28529..2de4e8b7 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: 48d941ba3883b5f1ca05a29e236f095f +guid: 870f3cf04ba24b84ae03ece073c493b4 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 65e9bb68..89763160 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: 33d7724aaf6aa2bf5357f1936e46fdf5 +guid: 49ca678d7a4c1062284b7631a321b406 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 ca6b4e59..11159684 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: 2cf8c9f3cf0fe0112195f5a8f4529364 +guid: 0029f054811ce753fbee355d3d54917f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugin-config.js.meta b/Runtime/wechat-default/plugin-config.js.meta index 7493f745..bea96f83 100644 --- a/Runtime/wechat-default/plugin-config.js.meta +++ b/Runtime/wechat-default/plugin-config.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fd7e91bb66ca437cb4918f4497e3b63e +guid: 5d086fd776aa43189c0df5a2b2cbaa73 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugins/check-update.js.meta b/Runtime/wechat-default/plugins/check-update.js.meta index 39404e27..a7f0d9a4 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: db8a6806bfba2c25f03a32f0e8d37f42 +guid: 8e4afe6b16d4c24e19f59a81d0bb9d63 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/plugins/screen-adapter.js.meta b/Runtime/wechat-default/plugins/screen-adapter.js.meta index 0729a024..8f203db1 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: 59d3a039fbe06792a2e1167994c993d1 +guid: efe2e08fa5e916cd0ff05597444f9895 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/project.config.json.meta b/Runtime/wechat-default/project.config.json.meta index 861860b6..da45f8e8 100644 --- a/Runtime/wechat-default/project.config.json.meta +++ b/Runtime/wechat-default/project.config.json.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d242e1682b58ac26e360370cc05fbd14 +guid: 96e225b24a5c539802776a5e6d18043a DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/texture-config.js.meta b/Runtime/wechat-default/texture-config.js.meta index 26c960b6..5f9c2559 100644 --- a/Runtime/wechat-default/texture-config.js.meta +++ b/Runtime/wechat-default/texture-config.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 37a52ad32cdf7533e36c43300518fe35 +guid: a32edf3c0423bd7f0f8e60ccc52f90cc DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-namespace.js.meta b/Runtime/wechat-default/unity-namespace.js.meta index c27050ae..730e8b2f 100644 --- a/Runtime/wechat-default/unity-namespace.js.meta +++ b/Runtime/wechat-default/unity-namespace.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 73f5885426cd64293e1af7cb9b87e474 +guid: e3981d478bee92bb257d87e6d46d8ba5 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 a3fbfec4..591f2eb4 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: cb7dcd0ec43b9355a094080c7f1c77ea +guid: bc8ead2097bdeea7e786c2f1b7af0592 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 5ebed945..10c36320 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: 30bd6b7db9cef67b056e9ba91d2a8895 +guid: 37007bc33c26442d1c5d28077cb11ab5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/ad.js.meta b/Runtime/wechat-default/unity-sdk/ad.js.meta index 720bf3e8..e15daab0 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: a978c7bb465b265907d5c55b125fa9b3 +guid: 7e20f8b16f28df74a2edc79abfac4ff3 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 e96fa34c..98e5c15c 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: 645b7ef6e2b5222a77a86cae11008ccd +guid: 8322535733fe0b216270967af3b07eec 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 e11c6abb..ccf549e6 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: af77ef38c8fb37557a3a9961883846f5 +guid: 3b64202f039bc506dad5ff93028dd4ca 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 4caec199..536aae05 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: a9d6016f6d5ed1e3ae48d2276d5fdb1a +guid: a64299204b993f0c279766015c96b91c 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 b39b0580..069a2a17 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: e76eb9c5f891eb5afec971f1b91e095a +guid: 6ecf6572bdd91a6274072b7ed74e887d 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 6bac9edf..72859e6c 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: 04c0dab47e65b6b4e1c8740f4ebdaa51 +guid: dfee44b39e48c147017e901352bef187 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 a6fec662..c1a9b6d3 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: 2797a72781ac47124c73e292cf59a10a +guid: d2f322bdfb42d3229fec4f70f686a7c3 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 b0933170..e72d299c 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: 2861fa3f13d80304ae942c6d9fd36ec8 +guid: 2592d5bf5e8e7f71afe18493487ceb35 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/authorize.js.meta b/Runtime/wechat-default/unity-sdk/authorize.js.meta index f78ecde7..b5fee002 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: 59d8e2b4d3a45e00fe06bd9314ff3588 +guid: 74df1a9d1a86d5b06435e2a8887b5b94 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 26b52e1c..d9d97877 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: 2c9ea3171a146d5a6a10374259b78b12 +guid: 090d54b96a69971ffa30fd80aea81357 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/camera.js.meta b/Runtime/wechat-default/unity-sdk/camera.js.meta index f207e1fa..108b23b9 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: bd19c15c2a314cd4dfc5b5e0a3b3df6a +guid: ad6b44f9b51aeb80bbc594c7fc8f9a08 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 d882c8c1..f95fd8e3 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: a5d44e3594ce081c74657c4d7299db5e +guid: 7208cc1a1af0b8fa59d342eb8757d752 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/canvas.js.meta b/Runtime/wechat-default/unity-sdk/canvas.js.meta index ce8fa25a..9ffb447c 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: 2a3938d65b841305509b6b053b95f76c +guid: e12d420f9cbe916f537db78bf32976f5 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/chat.js.meta b/Runtime/wechat-default/unity-sdk/chat.js.meta index b7023645..ffae5ecc 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: 2426bdd53bc1fd3ca76339d70801fe60 +guid: 47850917f061e35b1dd68a8f7c731d53 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/cloud.js.meta b/Runtime/wechat-default/unity-sdk/cloud.js.meta index a9294567..d813acfa 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: b27ae92d1a96fbd3c6b10eae46c55321 +guid: 2025da99fff3b12548765ff91615256d DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/conf.js.meta b/Runtime/wechat-default/unity-sdk/conf.js.meta index 72d68ef9..52d16664 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: e5bf0bc00aaca39e348a23bca281b534 +guid: d553d3672050be4459ecedc991baae47 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 e6406d7c..814bd8ee 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: 62229894bc9e0dd1f6ea7e299cddc487 +guid: eff58b3be0101858fd5eb278ab84626a DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/fix.js.meta b/Runtime/wechat-default/unity-sdk/fix.js.meta index e7a833fc..ccf33717 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: 49ec5c153f18219420752e807d41064e +guid: 7182e77aedc444e0960286d93776cc7c 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 61a90ede..7006c766 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: 1b96f9660e2f800a0400df2d9a94ef58 +guid: f4f0fdc345ea28e421c50999496b0aba 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 8b80b70e..1a8be287 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: 3877622582d98fadd217faffa1cf82f8 +guid: b159f72d84dcd0dcf58907f176f86a71 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 30385fac..e67199fb 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: c50e805b3c3e0dc55d5102912867fda9 +guid: e08072cbd933e78433d13b828afbb9ab 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 03685289..e7b9672f 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: 5224c42321dd415948b50e5c134ae3f7 +guid: b880903a923137baeffd0110094acd83 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 a3850af5..274f0d99 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: 4ab11c6cd8f82c1dc0b9d974ab2f6d55 +guid: e52e16f4da51e84778192fc68a24e7e9 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/fs.js.meta b/Runtime/wechat-default/unity-sdk/fs.js.meta index b7c5931c..08a30b1d 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: 2b9a402a0e444fe2b1a2a15cffd20b66 +guid: 7c3010e18e3e326ec21581e7f6a1e097 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 42f19faf..f4bdd008 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: dc233b749d4327c795d0e5a5f089b388 +guid: dd2799b895f75790c643713aff67adbf 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 c1b5cb9a..b3df1a75 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: 2a8b3aa0e93d34411d5284ff137a07ab +guid: e48c1617d4c06c7405331f5bd285e0cf 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 9dfd7c3c..4ac287f5 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: 23eb7ff7ffab59a8839e5c58ba100cf5 +guid: 0067a53a06e04bdc0edf0f498056063b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/index.js.meta b/Runtime/wechat-default/unity-sdk/index.js.meta index 447daddb..2523bd5e 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: a5ad8f27343eb9a6b357e0d5a421bb4b +guid: 6c6b7924c3d17cdcb9a21ea0cf0084f9 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/logger.js.meta b/Runtime/wechat-default/unity-sdk/logger.js.meta index d8bfe951..a7d23834 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: 5087b0034b3898f9b3050788a499c061 +guid: ac71a4810cd7c4ee92240cb73fbd5dc2 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 e100eb21..2a1343e9 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: c1ebd7553508f08b2f9a61ee08ca5e13 +guid: 400421ec0c4287260166cef1e3271c0a 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 1dcee0c4..27f89727 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: bf8046085687cd98d50cbee239ff1c82 +guid: 4e40bc597213f0e0f0694c6f85a2c151 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 098b5d2f..71d00df0 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: 37474c957711bde755eaf36b509a0b5b +guid: 7dc48b8a509505fe9f4d58243466f0b2 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/recorder.js.meta b/Runtime/wechat-default/unity-sdk/recorder.js.meta index 4ca80528..71ccc0c8 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: 1c603a29dee8487d17831379cdcf0f94 +guid: 53944b2a4c0be16115ee368bc73efca1 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/resType.js b/Runtime/wechat-default/unity-sdk/resType.js index 29bf16b5..9235347b 100644 --- a/Runtime/wechat-default/unity-sdk/resType.js +++ b/Runtime/wechat-default/unity-sdk/resType.js @@ -571,13 +571,8 @@ export const ResType = { hasSystemProxy: 'bool', networkType: 'string', signalStrength: 'number', - weakNet: 'bool', errMsg: 'string', }, - GetPhoneNumberOption: { - isRealtime: 'bool', - phoneNumberNoQuotaToast: 'bool', - }, GetPrivacySettingSuccessCallbackResult: { needAuthorization: 'bool', privacyContractName: 'string', diff --git a/Runtime/wechat-default/unity-sdk/resType.js.meta b/Runtime/wechat-default/unity-sdk/resType.js.meta index aa4484de..b7e04250 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: dce8bd9efc254d54a6f0e450b4703a35 +guid: d9293c53a8a9b7f82ddac0fffd53aeaf DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta b/Runtime/wechat-default/unity-sdk/resTypeOther.js.meta index 60031b6e..d46674fa 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: 0f7b4260580aa8af42cae283e2876ca5 +guid: d4a07a1960677ce605cda0263086d8ec DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/response.js.meta b/Runtime/wechat-default/unity-sdk/response.js.meta index a16177bb..468e8397 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: 9ec97318f438f8674ab572dd6b719c75 +guid: 34968f1b4b68f215fcbcc249dc69577f DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/sdk.js b/Runtime/wechat-default/unity-sdk/sdk.js index 40798030..c0de7e82 100644 --- a/Runtime/wechat-default/unity-sdk/sdk.js +++ b/Runtime/wechat-default/unity-sdk/sdk.js @@ -1481,30 +1481,6 @@ export default { }, }); }, - WX_NavigateBackMiniProgram(conf, callbackId) { - const config = formatJsonStr(conf); - wx.navigateBackMiniProgram({ - ...config, - success(res) { - formatResponse('GeneralCallbackResult', res); - moduleHelper.send('NavigateBackMiniProgramCallback', JSON.stringify({ - callbackId, type: 'success', res: JSON.stringify(res), - })); - }, - fail(res) { - formatResponse('GeneralCallbackResult', res); - moduleHelper.send('NavigateBackMiniProgramCallback', JSON.stringify({ - callbackId, type: 'fail', res: JSON.stringify(res), - })); - }, - complete(res) { - formatResponse('GeneralCallbackResult', res); - moduleHelper.send('NavigateBackMiniProgramCallback', JSON.stringify({ - callbackId, type: 'complete', res: JSON.stringify(res), - })); - }, - }); - }, WX_NavigateToMiniProgram(conf, callbackId) { const config = formatJsonStr(conf); wx.navigateToMiniProgram({ @@ -3335,9 +3311,6 @@ export default { WX_ExitPointerLock() { wx.exitPointerLock(); }, - WX_GetPhoneNumber(option) { - wx.getPhoneNumber(formatJsonStr(option)); - }, WX_OperateGameRecorderVideo(option) { wx.operateGameRecorderVideo(formatJsonStr(option)); }, diff --git a/Runtime/wechat-default/unity-sdk/sdk.js.meta b/Runtime/wechat-default/unity-sdk/sdk.js.meta index ebd79170..57d6eb00 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: 9b77d294da6b51a9636d99d16ddd76b3 +guid: fadfa227630f18a94c7b7a15b87bcd51 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/share.js.meta b/Runtime/wechat-default/unity-sdk/share.js.meta index 461e3d31..8cb5b88d 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: c21c3fc4b39d3ef5f017b17f09b3cf66 +guid: 20bd31eb9d47a56f0441b9e38bdb31cc DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/storage.js.meta b/Runtime/wechat-default/unity-sdk/storage.js.meta index 13638a07..e500249b 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: 9d1f0cdb15a731e09ee5a416bfe266e0 +guid: 82e48a4f28e80faf23d4bf7471c44421 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/texture.js.meta b/Runtime/wechat-default/unity-sdk/texture.js.meta index 4e9284bf..4f6fb0f1 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: 192ada6a3324bd51ba75d8c537d2514a +guid: d2b6cb6bd58a13a5cd9fbe37afaa7d18 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 39350dfe..922b9296 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: f3e062a9412e85562b11048e4cbfb7c6 +guid: bac7c7f15eb8e1d10265d478e032d2dd 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 48c397fc..8980e07c 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: e27c6a36a6f6f778dcb6242493b1ed68 +guid: 0391fdcee00993c209a8a820230af8ac DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/userinfo.js.meta b/Runtime/wechat-default/unity-sdk/userinfo.js.meta index 786b642d..50da17ac 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: 51d5432e2529bc111be0e7d75e61a03f +guid: 91497ef9ef4d214548a6b354fe39fbe3 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/util.js.meta b/Runtime/wechat-default/unity-sdk/util.js.meta index 748d5380..0ccb44e6 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: 8176df5b6e5bdc7ea206210ca5e13831 +guid: 2878b09828ea1a41358c4a8a39d6bc7b DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/utils.js.meta b/Runtime/wechat-default/unity-sdk/utils.js.meta index f1dbe022..260dd71a 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: 10af6913f0a0d68aa350745a63b30452 +guid: 8f4ff83e31942e2aa5f416856cce0184 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/unity-sdk/video.js.meta b/Runtime/wechat-default/unity-sdk/video.js.meta index db031fa8..9e47f68d 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: d2f5066a21077631277c83cba5e8916a +guid: 834abc5366493a4a73cf189b881959d6 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 2c916184..1fda6b95 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: 6abc8f5b1ded21ff42f952503c2a0997 +guid: dcd4bd0df1eaf0ee4c274557c7552213 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/wasmcode/game.js.meta b/Runtime/wechat-default/wasmcode/game.js.meta index 2a201f3d..cf21f8c2 100644 --- a/Runtime/wechat-default/wasmcode/game.js.meta +++ b/Runtime/wechat-default/wasmcode/game.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 260722be52c6cdb108977a13f89caceb +guid: be092531f49377c2bd6589d7fbc9d54d DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/weapp-adapter.js.meta b/Runtime/wechat-default/weapp-adapter.js.meta index e305e526..7ef5fe15 100644 --- a/Runtime/wechat-default/weapp-adapter.js.meta +++ b/Runtime/wechat-default/weapp-adapter.js.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8c2e3e9f95837aae5c7dfa35114c5f81 +guid: daac36d01fb8b07ccbb33b1d2145c684 DefaultImporter: externalObjects: {} userData: diff --git a/Runtime/wechat-default/workers/response/index.js.meta b/Runtime/wechat-default/workers/response/index.js.meta index 3de8ad80..abd58b8d 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: 76800542f94fcbd1cade7dcef56a46c8 +guid: 680372ad807e4a9e5493cfbb3b314edf DefaultImporter: externalObjects: {} userData: diff --git a/WebGLTemplates/WXTemplate/index.html b/WebGLTemplates/WXTemplate/index.html index 94072bb2..d450eecc 100644 --- a/WebGLTemplates/WXTemplate/index.html +++ b/WebGLTemplates/WXTemplate/index.html @@ -436,7 +436,6 @@ WX_JoinVoIPChat(conf, callbackId){}, WX_Login(conf, callbackId){}, WX_MakeBluetoothPair(conf, callbackId){}, - WX_NavigateBackMiniProgram(conf, callbackId){}, WX_NavigateToMiniProgram(conf, callbackId){}, WX_NotifyBLECharacteristicValueChange(conf, callbackId){}, WX_OpenAppAuthorizeSetting(conf, callbackId){}, @@ -515,7 +514,6 @@ WX_OpenBusinessView(conf, callbackId){}, WX_ExitPointerLock() {}, - WX_GetPhoneNumber() {}, WX_OperateGameRecorderVideo() {}, WX_RemoveStorageSync() {}, WX_ReportEvent() {}, diff --git a/WebGLTemplates/WXTemplate2020/index.html b/WebGLTemplates/WXTemplate2020/index.html index 0898164e..a114e0db 100644 --- a/WebGLTemplates/WXTemplate2020/index.html +++ b/WebGLTemplates/WXTemplate2020/index.html @@ -508,7 +508,6 @@ WX_JoinVoIPChat(conf, callbackId){}, WX_Login(conf, callbackId){}, WX_MakeBluetoothPair(conf, callbackId){}, - WX_NavigateBackMiniProgram(conf, callbackId){}, WX_NavigateToMiniProgram(conf, callbackId){}, WX_NotifyBLECharacteristicValueChange(conf, callbackId){}, WX_OpenAppAuthorizeSetting(conf, callbackId){}, @@ -587,7 +586,6 @@ WX_OpenBusinessView(conf, callbackId){}, WX_ExitPointerLock() {}, - WX_GetPhoneNumber() {}, WX_OperateGameRecorderVideo() {}, WX_RemoveStorageSync() {}, WX_ReportEvent() {}, diff --git a/WebGLTemplates/WXTemplate2022/index.html b/WebGLTemplates/WXTemplate2022/index.html index 5a72d381..72adfa2a 100755 --- a/WebGLTemplates/WXTemplate2022/index.html +++ b/WebGLTemplates/WXTemplate2022/index.html @@ -585,7 +585,6 @@ WX_JoinVoIPChat(conf, callbackId){}, WX_Login(conf, callbackId){}, WX_MakeBluetoothPair(conf, callbackId){}, - WX_NavigateBackMiniProgram(conf, callbackId){}, WX_NavigateToMiniProgram(conf, callbackId){}, WX_NotifyBLECharacteristicValueChange(conf, callbackId){}, WX_OpenAppAuthorizeSetting(conf, callbackId){}, @@ -664,7 +663,6 @@ WX_OpenBusinessView(conf, callbackId){}, WX_ExitPointerLock() {}, - WX_GetPhoneNumber() {}, WX_OperateGameRecorderVideo() {}, WX_RemoveStorageSync() {}, WX_ReportEvent() {},