Auto-publish.

This commit is contained in:
rainhong 2024-10-12 14:28:12 +08:00
parent e86b87b335
commit cc91ebaffb
101 changed files with 1560 additions and 7368 deletions

View File

@ -118,7 +118,7 @@ namespace WeChatWASM
CheckBuildTarget(); CheckBuildTarget();
Init(); Init();
ProcessWxPerfBinaries(); ProcessWxPerfBinaries();
// JSLib // JSLib
SettingWXTextureMinJSLib(); SettingWXTextureMinJSLib();
UpdateGraphicAPI(); UpdateGraphicAPI();
@ -241,7 +241,7 @@ namespace WeChatWASM
$"{jsLibRootDir}wx_perf_2021.a", $"{jsLibRootDir}wx_perf_2021.a",
}; };
} }
{ {
// WxPerfJsBridge.jslib // WxPerfJsBridge.jslib
var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter; var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter;
@ -254,7 +254,7 @@ namespace WeChatWASM
{ {
// wx_perf_2022.a // wx_perf_2022.a
bool bShouldEnablePerf2022Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202203OrNewer(); bool bShouldEnablePerf2022Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202203OrNewer();
var wxPerf2022Importer = AssetImporter.GetAtPath(wxPerfPlugins[1]) as PluginImporter; var wxPerf2022Importer = AssetImporter.GetAtPath(wxPerfPlugins[1]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_WEIXINMINIGAME
@ -266,7 +266,7 @@ namespace WeChatWASM
{ {
// wx_perf_2021.a // wx_perf_2021.a
bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202103To202203(); bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202103To202203();
var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter; var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_WEIXINMINIGAME
@ -422,8 +422,8 @@ namespace WeChatWASM
{ {
const string MACRO_ENABLE_WX_PERF_FEATURE = "ENABLE_WX_PERF_FEATURE"; const string MACRO_ENABLE_WX_PERF_FEATURE = "ENABLE_WX_PERF_FEATURE";
string defineSymbols = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup); 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() private static void ConvertDotnetCode()
@ -1518,9 +1518,9 @@ namespace WeChatWASM
config.FontOptions.Mathematical_Operators ? "true" : "false", config.FontOptions.Mathematical_Operators ? "true" : "false",
customUnicodeRange, customUnicodeRange,
boolConfigInfo, boolConfigInfo,
config.CompileOptions.DevelopBuild ? "true" : "false", config.CompileOptions.DevelopBuild ? "true" : "false",
config.CompileOptions.enablePerfAnalysis ? "true" : "false", config.CompileOptions.enablePerfAnalysis ? "true" : "false",
config.ProjectConf.MemorySize.ToString(), config.ProjectConf.MemorySize.ToString(),
}); });
List<Rule> replaceList = new List<Rule>(replaceArrayList); List<Rule> replaceList = new List<Rule>(replaceArrayList);

View File

@ -59,7 +59,7 @@ namespace WeChatWASM
} }
private static WXEditorScriptObject config; private static WXEditorScriptObject config;
private static bool m_EnablePerfTool = false; private static bool m_EnablePerfTool = false;
private static string _dstCache; private static string _dstCache;
@ -206,7 +206,7 @@ namespace WeChatWASM
{ {
this.formCheckbox("enablePerfAnalysis", "集成性能分析工具", "将性能分析工具集成入Development Build包中", false, null, OnPerfAnalysisFeatureToggleChanged); this.formCheckbox("enablePerfAnalysis", "集成性能分析工具", "将性能分析工具集成入Development Build包中", false, null, OnPerfAnalysisFeatureToggleChanged);
} }
EditorGUILayout.EndVertical(); EditorGUILayout.EndVertical();
} }
@ -470,7 +470,7 @@ namespace WeChatWASM
this.setData("enableProfileStats", config.CompileOptions.enableProfileStats); this.setData("enableProfileStats", config.CompileOptions.enableProfileStats);
this.setData("enableRenderAnalysis", config.CompileOptions.enableRenderAnalysis); this.setData("enableRenderAnalysis", config.CompileOptions.enableRenderAnalysis);
this.setData("brotliMT", config.CompileOptions.brotliMT); this.setData("brotliMT", config.CompileOptions.brotliMT);
this.setData("enablePerfAnalysis", config.CompileOptions.enablePerfAnalysis); this.setData("enablePerfAnalysis", config.CompileOptions.enablePerfAnalysis);
this.setData("autoUploadFirstBundle", true); this.setData("autoUploadFirstBundle", true);
// font options // font options
@ -565,7 +565,7 @@ namespace WeChatWASM
config.FontOptions.Mathematical_Operators = this.getDataCheckbox("Mathematical_Operators"); config.FontOptions.Mathematical_Operators = this.getDataCheckbox("Mathematical_Operators");
config.FontOptions.CustomUnicode = this.getDataInput("CustomUnicode"); config.FontOptions.CustomUnicode = this.getDataInput("CustomUnicode");
ApplyPerfAnalysisSetting(); ApplyPerfAnalysisSetting();
} }
private string getDataInput(string target) private string getDataInput(string target)
@ -703,7 +703,7 @@ namespace WeChatWASM
// 针对non-dev build取消性能分析工具的集成 // 针对non-dev build取消性能分析工具的集成
if (!InNewValue) if (!InNewValue)
{ {
this.setData("enablePerfAnalysis", false); this.setData("enablePerfAnalysis", false);
} }
} }
@ -712,7 +712,7 @@ namespace WeChatWASM
// 针对non-dev build取消性能分析工具的集成 // 针对non-dev build取消性能分析工具的集成
if (!formCheckboxData["developBuild"] && InNewValue) 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"; const string MACRO_ENABLE_WX_PERF_FEATURE = "ENABLE_WX_PERF_FEATURE";
string defineSymbols = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup); 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) if (defineSymbols.IndexOf(MACRO_ENABLE_WX_PERF_FEATURE) == -1)
{ {
@ -767,7 +767,7 @@ namespace WeChatWASM
{ {
return path; return path;
} }
return Path.Combine(projectRootPath, path); return Path.Combine(projectRootPath, path);
} }
} }

View File

@ -1,8 +1,8 @@
namespace WeChatWASM namespace WeChatWASM
{ {
public class WXPluginVersion public class WXPluginVersion
{ {
public static string pluginVersion = "202410100917"; // 这一行不要改他,导出的时候会自动替换 public static string pluginVersion = "202410120627"; // 这一行不要改他,导出的时候会自动替换
} }
public class WXPluginConf public class WXPluginConf

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -489,6 +489,11 @@ namespace WeChatWASM
/// [wx.getChannelsLiveInfo(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/channels/wx.getChannelsLiveInfo.html) /// [wx.getChannelsLiveInfo(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/channels/wx.getChannelsLiveInfo.html)
/// 需要基础库: `2.15.0` /// 需要基础库: `2.15.0`
/// 获取视频号直播信息 /// 获取视频号直播信息
/// **常见错误码说明**
/// 100008 视频号需要认证
/// 40097 入参异常
/// 1416104 视频号获取到的数据为空
/// 1416100 非法的视频号id
/// </summary> /// </summary>
public static void GetChannelsLiveInfo(GetChannelsLiveInfoOption callback) public static void GetChannelsLiveInfo(GetChannelsLiveInfoOption callback)
{ {
@ -719,6 +724,7 @@ namespace WeChatWASM
/// wx.getNetworkType({ /// wx.getNetworkType({
/// success (res) { /// success (res) {
/// const networkType = res.networkType /// const networkType = res.networkType
/// const weakNet = res.weakNet
/// } /// }
/// }) /// })
/// ``` /// ```
@ -728,6 +734,18 @@ namespace WeChatWASM
WXSDKManagerHandler.Instance.GetNetworkType(callback); WXSDKManagerHandler.Instance.GetNetworkType(callback);
} }
/// <summary>
/// [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)
/// ****
/// ## 注意事项
/// - 用户点击后才可进行调用
/// </summary>
public static void GetPhoneNumber(GetPhoneNumberOption callback)
{
WXSDKManagerHandler.Instance.GetPhoneNumber(callback);
}
/// <summary> /// <summary>
/// [wx.getPrivacySetting(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/privacy/wx.getPrivacySetting.html) /// [wx.getPrivacySetting(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/privacy/wx.getPrivacySetting.html)
/// 需要基础库: `2.32.3` /// 需要基础库: `2.32.3`
@ -1143,6 +1161,28 @@ namespace WeChatWASM
WXSDKManagerHandler.Instance.MakeBluetoothPair(callback); WXSDKManagerHandler.Instance.MakeBluetoothPair(callback);
} }
/// <summary>
/// [wx.navigateBackMiniProgram(Object object)](https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateBackMiniProgram.html)
/// 需要基础库: `3.5.6`
/// 返回到上一个小程序。只有在当前小程序是被其他小程序打开时可以调用成功。
/// 注意:**微信客户端 iOS 6.5.9Android 6.5.10 及以上版本支持**
/// **示例代码**
/// ```js
/// wx.navigateBackMiniProgram({
/// extraData: {
/// foo: 'bar'
/// },
/// success(res) {
/// // 返回成功
/// }
/// })
/// ```
/// </summary>
public static void NavigateBackMiniProgram(NavigateBackMiniProgramOption callback)
{
WXSDKManagerHandler.Instance.NavigateBackMiniProgram(callback);
}
/// <summary> /// <summary>
/// [wx.navigateToMiniProgram(Object object)](https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateToMiniProgram.html) /// [wx.navigateToMiniProgram(Object object)](https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.navigateToMiniProgram.html)
/// 需要基础库: `2.2.0` /// 需要基础库: `2.2.0`
@ -1422,11 +1462,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 /// ```js
/// wx.previewImage({ /// wx.previewImage({
@ -1569,8 +1609,7 @@ namespace WeChatWASM
/// <summary> /// <summary>
/// [wx.requestMidasPayment(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPayment.html) /// [wx.requestMidasPayment(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPayment.html)
/// 需要基础库: `2.19.2` /// 需要基础库: `2.19.2`
/// 发起购买游戏币支付请求,可参考[虚拟支付2.0游戏币](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/coins.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)
/// 虚拟支付全流程可参考[技术手册-虚拟支付篇](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/virtual-payment/guide.html)
/// **buyQuantity 限制说明** /// **buyQuantity 限制说明**
/// 购买游戏币的时候buyQuantity 不可任意填写。需满足 buyQuantity * 游戏币单价 = 限定的价格等级。如:游戏币单价为 0.1 元,一次购买最少数量是 10。 /// 购买游戏币的时候buyQuantity 不可任意填写。需满足 buyQuantity * 游戏币单价 = 限定的价格等级。如:游戏币单价为 0.1 元,一次购买最少数量是 10。
/// 有效价格等级如下: /// 有效价格等级如下:
@ -1614,7 +1653,7 @@ namespace WeChatWASM
/// <summary> /// <summary>
/// [wx.requestMidasPaymentGameItem(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPaymentGameItem.html) /// [wx.requestMidasPaymentGameItem(Object object)](https://developers.weixin.qq.com/minigame/dev/api/midas-payment/wx.requestMidasPaymentGameItem.html)
/// 需要基础库: `2.19.2` /// 需要基础库: `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 /// ```js
/// wx.requestMidasPaymentGameItem({ /// wx.requestMidasPaymentGameItem({
@ -2651,7 +2690,7 @@ namespace WeChatWASM
/// 主动拉起转发,进入选择通讯录界面。 /// 主动拉起转发,进入选择通讯录界面。
/// **** /// ****
/// ## 注意事项 /// ## 注意事项
/// - 转发图片说明:仅当自定义分享图片权限被封禁时用 imageUrlId其他情况都会用 imageUrl。 imageUrl 不填时使用游戏画面截图。 /// - 转发图片说明:imageUrlimageUrlId 都存在时,优先使用 imageUrl。 imageUrlimageUrlId 都不填时使用游戏画面截图。
/// </summary> /// </summary>
public static void ShareAppMessage(ShareAppMessageOption option) public static void ShareAppMessage(ShareAppMessageOption option)
{ {
@ -3456,7 +3495,7 @@ namespace WeChatWASM
/// 监听用户点击右上角菜单的「分享到朋友圈」按钮时触发的事件。本接口为 Beta 版本,暂只在 Android 平台支持。 /// 监听用户点击右上角菜单的「分享到朋友圈」按钮时触发的事件。本接口为 Beta 版本,暂只在 Android 平台支持。
/// **** /// ****
/// ## 注意事项 /// ## 注意事项
/// - 转发图片说明:仅当自定义分享图片权限被封禁时用 imageUrlId其他情况都会用 imageUrl。 imageUrl 不填时使用当前游戏的icon。 /// - 转发图片说明:imageUrlimageUrlId 都存在时,优先使用 imageUrl。 imageUrlimageUrlId 都不填时使用当前游戏的icon。
/// </summary> /// </summary>
public static void OnShareTimeline(Action<Action<OnShareTimelineListenerResult>> callback) public static void OnShareTimeline(Action<Action<OnShareTimelineListenerResult>> callback)
{ {

View File

@ -15,7 +15,7 @@ namespace WeChatWASM
private static void Init() private static void Init()
{ {
#if UNITY_2018_1_OR_NEWER #if UNITY_2018_1_OR_NEWER
WXRuntimeExtEnvDef.SETDEF("UNITY_2018_1_OR_NEWER", true); WXRuntimeExtEnvDef.SETDEF("UNITY_2018_1_OR_NEWER", true);
#else #else
@ -118,16 +118,16 @@ namespace WeChatWASM
*/ */
WXRuntimeExtEnvDef.RegisterAction("Unity.GetObjectInstanceID", (args) => WXRuntimeExtEnvDef.RegisterAction("Unity.GetObjectInstanceID", (args) =>
{ {
#if UNITY_2021_3_OR_NEWER #if UNITY_2021_3_OR_NEWER
if (args is UnityEngine.Object unityObject) if (args is UnityEngine.Object unityObject)
{ {
return unityObject.GetInstanceID(); return unityObject.GetInstanceID();
} }
#endif #endif
// unityObject.GetInstanceID() would never return 0. // unityObject.GetInstanceID() would never return 0.
return 0; return 0;
}); });
} }
} }
} }

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: bc3369325bce4e7f94719abcffc6b7cd guid: 0c8d93b0ea292348711ec48835b05d00
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2b898fd5d1d0ebfaa9f43fc70617cb92 guid: 1ead1764b05003094ec35918bfa5f44b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f209fd22f12ae9a0ed98728a962cf355 guid: 38ff96afa9bcd2a0bf0a8117bcbd39ca
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: badec549958656cbbad1003d30fdbdf8 guid: 1355eb10e427d58ea1900cd9565002b4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ed8876b6a2692c8a247a1e0b6baccf6b guid: b705406d87f678fe7eaaf118cc01c5a1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 570059cfd68e561f19880762a18c3af5 guid: 89611baa8b7fbfe8884013faa3304bbf
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: dc8baabe125bb015e1ca664b027b55c7 guid: cbf02c9e0f903659a047d8fd36a53b78
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: bc0fab21f817ed12d1273809db4e7c5c guid: 3b068ac38ce59de54bbda60b119a3903
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6bc12a6887d59b476817d127d75e17fe guid: 356558a333113e3a99d31ed5058c7d44
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7e7bca6c0f97498c6d521420e55e6ca1 guid: 9cbd1fdf012a766b587cd2e832bf874f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4723cad8ec76733231d8052efa345832 guid: 00c51a95c6898380aabec6e7a2233a96
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: aa5d16ec185b68c23a7bbf933a05bb18 guid: 3c6a7fc2500e5e251575068a25e4a233
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4ef2b8d892d3e5dc1ea56eb31da53ac1 guid: 8815c0fcad342b263cb7c5cf94909f05
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4a30ac2ec43ec4d2c256434dad0681a1 guid: c3401bbacec50d76b6423422ec618772
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 17d5912a1d3eb6827e70ab1491ac09d2 guid: 7c5e2ee4decc0735799388231ce3c91b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 66b55a92e192c57f681c8c236a8257c0 guid: 88c2897eed785cd19d064490f4e8f6cf
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 725801743ad90c144bbe8894bdf1def1 guid: 539f46f8cb81f15df92d8589aeeba0f4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c0b6e720fb4775b6b307b37ae9cb1b77 guid: 5c39ac10931bbf90374ec55341de5876
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4f956b3cd71f7a5f0300edca4f677af1 guid: 7f2eeb821478ea551350fea0d58ae2db
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9526b8b9100f3f361de0d5d780fdf13a guid: b365fae27ba533db70b24bec253da63d
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3bb44be0cc21ddcc324abbe33b5fe331 guid: 5572aecb5b1f492089b8dc905cef97a1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ae5a5ab64eaa959bb6838339470eabdb guid: 11c2357e9e640c12f41a3141f9392c00
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b5631d759bbd484c4447794fed1457e4 guid: 0120a7c1c16963e5a564853bf27f668d
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 04bc1deb8e62fa99f8594f345e8a0897 guid: 496775563372cd85cd8a5b50d89b45f8
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 5e9d7f2025ba992752b1ff86dfa8ce58 guid: f4ba4f244732e70389cd13d40cf3b6cb
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 25a2bee4d56ec238b69a22b486f6264f guid: cd428863185543ff57ecbd33295f1c29
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0cfed6e3e9c1286393df3fd5445cdec3 guid: 65c7addd4989f77bcc3eed23514441b3
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: db75dec93076a6a40c4abceb60994d61 guid: 074808359ef072c02e45407997606149
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6d6c4df2732b90a3bfa38fef723cf945 guid: 39ea6053ac87654819ce879cf229b860
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 342aa9e96cb9f0f4baf07fa6f8180be2 guid: 8788a36aa3903b657758c40d06080e48
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9961582ef10038bec67da0d4f6b6d579 guid: e874c36bf7bc7aaef7e9cf798974259a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 98613bf26ea421e1792309e23dde6248 guid: fadd86c84861737cfeac89c3da4c4fb7
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c73574e2f64f9b18aad6c9e185277e11 guid: 3c3cfdc5db892873839dfe594db0f3cd
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 118040602ee29959486023fe4ed498ed guid: 48630e0ef477d99d88686aeaffe7ec3a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 96a23e188a0739be90ea38ff3fda04fe guid: 5854e1ce99e1fc6025c23eec78a48a7f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3c9d0529a3ae9c2f22f79499bd3911a9 guid: 1d0c49cb5a0d021c59d15e79fc692488
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2181d224f5eec7f71471bac5e4fd4b35 guid: 2f7b7fade32454b62fb63ab3dc61be65
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 818555d87541e6b2d0f894e6cccb710e guid: 56a8b4ef76114b9289e2ad197949cab9
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 84c12505394bb62c89745200fa64c90c guid: c4b3e50eca6e67ca27cca891636e3269
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: a3ad5abcba137ec5742121956515bab1 guid: b99e7ce1d02a8821e12260cbe33cd20f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 51ec2bb09696a181540f4406f7ac377f guid: d95286e46e90467a085b3bca736c7e44
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 84b9b551322d6b51badc3a2c10eae7e1 guid: 41be3bc48024c2894ec16aeea82f793b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6c1886f133b4e6e4e917dfa99b591f81 guid: 39497742eb5bb60c11593497722da94c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 24b7fa879530884b9650e985b63ba645 guid: d78f908b38b0e4d31174127416d9dd1b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 858bab81baeedf0a91177ad739ec2db9 guid: 8efb571e27b6229cf92ede011b3808d1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 97297009369a7a666dd0ca824cc39f5f guid: c4310e8889326b655a6ef3eae54ac8ec
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 21400a9d979fb6c3b0e8e36a873bbb99 guid: 0675b96704953598acd3b265a60ad672
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -32,7 +32,7 @@ export default {
wx.cloud.init(); wx.cloud.init();
} }
else { else {
CloudList[config.env].init(config); wx.cloud.init(config);
} }
}, },
WX_CloudCallFunction(env, conf, callbackId) { WX_CloudCallFunction(env, conf, callbackId) {

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e47692c8adb6f7788aaf9232b8ca2141 guid: 0738534389f7807695502f538d18216c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: df2a56812d43a2d016e715157db1f76c guid: abc4a7bf77268a013c8bd75d96aad326
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9b5a3a0c8c8c8a76efc33b881c246309 guid: e30c9c08c436704bc8e6a45bd1b44061
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0f7ea31c72e2306ef930279c351b9c30 guid: 20ff93e28136a006603bca1fb902ceec
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e3879bc1f510ef173ea86062516cb465 guid: 333b55146e8d5cb368fdd9fe254a622c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: fe3c8b3f2617b38ae16a293af33d07b4 guid: 8298e8ef6eab73f80cc7ddc746e227a6
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: fbdaeb8308fa12af4fea9b0462826722 guid: 5eeda0d8218b5c6cb6dbb37a70ad08f1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 73738aa5e7544d0a13eb5db1a442cf1f guid: ae941bd4bfa6f52f7359e9d6fdde3e8f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 27931e4280713227217ed2fd6818a909 guid: ec65c144818d3b3eaf6a50050a4821f8
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3570f5f04e7c466c3fb5f02432f04d7b guid: 1f829358f5b5b9955716cb3c9149dd5f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e39ed2db27fd43405b53d48cc4073483 guid: d08c12d368d93d47b4a9c838f9bd4d57
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 48bc41a6ab502370aa136e78c13885e3 guid: 8430aa4903a39c3a30938f2ced9df9be
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6912f30b6dda79c092b43e48829cef31 guid: 08a937fd4c977d129f4c86d1c0364014
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 22529578cec3aa5c37ae97ced1f61cd1 guid: 5fcecb97067c7859d9d9ceed359c2fb0
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d61ad816a2706b6916b3dca6ef9ddc08 guid: 8e6afef7396fa4c1b26c996f777a22af
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 56c818e351fddd0043b1664c1391c236 guid: fb85a14a6cdf0ea945016de0ac3a3349
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4c2ac42fd85ffa23ddf6cdfcb267ceeb guid: fdbe2c00a5ec8585ca5cf666cf6bc66f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9af53a183921f1491061cdec8e3a82f5 guid: d57e04ee18a06956bc2bd4c2ed4271ce
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3b6efb49f990648b97997cc382244d9c guid: ae58a8b39492611c4f2cbf82894a05cf
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -571,6 +571,7 @@ export const ResType = {
hasSystemProxy: 'bool', hasSystemProxy: 'bool',
networkType: 'string', networkType: 'string',
signalStrength: 'number', signalStrength: 'number',
weakNet: 'bool',
errMsg: 'string', errMsg: 'string',
}, },
GetPrivacySettingSuccessCallbackResult: { GetPrivacySettingSuccessCallbackResult: {

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3e043b6a2fdbb58d942737637833e376 guid: 1406550ffe32da111828d1bd512be195
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 535b9cbf7a7c6998905202c1354c04e4 guid: 415e727c004ce6b6606ddf26da41d38e
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ab7de73f2038815ff93ffc15413fb778 guid: 9b911f7dd08140b10eeab032b9dacd42
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e06a79f293a8f58e3228b4ec2ddbb5af guid: 0410662fdc4c6ee11d86240005576848
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: a88af1358683fe85690c6bd304cd7843 guid: 53611c8afeaab49ec4c8440e331013d8
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: de3662a6c4fd35633c5e37040a089890 guid: ad7a7fe375c17fa4c0dd4f7748f1738e
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 16c480cc6a63441ac47cdac5cc91bcd5 guid: 047f2f9034cc7702476a88f9e5915c48
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 52b92d5807b4a50b99a7046c1e8b4bda guid: b0557c42a6396efd620dd4638f1243de
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 063a6a1c38fc5aa1d36acb35acf0cbfe guid: ed321eba9f475bb9b5990e15a49beaa1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ea0826bf2305d228df839d7a2753bda7 guid: 1b1c2bb266527859a48d697a834db1d4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 27baa18ec71b9cfac94537e753ba56ab guid: 363d01e0dd61c3a58608a45ff1957e4a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: cdbba239da61d81e53f5666fbeb20f70 guid: 14d6e5ebfe68766100a5881e7c74da26
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7fb7b84f95018b2a5ea8098afa401dae guid: ee230949b9851f5242d62db4881fccbd
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0b2126252843410905b8bfd7724b1456 guid: 6f9c6b1cbe7356064d7b4ce9db858cd3
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6bff71bedc4dd0b0b8fc947d4391748f guid: 7bdebcc257bfedcc1a43d25f7acc247f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 4c5806390e82c34f40676d944297bc9e guid: 17730dd45a4fa494ae189ddb6c7ff850
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8275934a02ddcf5809da5f2361f28448 guid: 81106110de7787f0a2dcabef1b57e0a7
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -377,238 +377,15 @@
WX_CloudDeleteFile() {}, WX_CloudDeleteFile() {},
WX_CloudCDN() {}, WX_CloudCDN() {},
WXLaunchOperaBridge() {}, WXLaunchOperaBridge() {},
WX_AddCard(conf, callbackId){}, WX_OneWayFunction(functionName, successType, failType, completeType, conf, callbackId){},
WX_AuthPrivateMessage(conf, callbackId){}, WX_OneWayNoFunction_v() {},
WX_Authorize(conf, callbackId){}, WX_OneWayNoFunction_vs() {},
WX_CheckIsAddedToMyMiniProgram(conf, callbackId){}, WX_OneWayNoFunction_vt() {},
WX_CheckSession(conf, callbackId){}, WX_OneWayNoFunction_vst() {},
WX_ChooseImage(conf, callbackId){}, WX_OneWayNoFunction_vsn() {},
WX_ChooseMedia(conf, callbackId){}, WX_OneWayNoFunction_vnns() {},
WX_ChooseMessageFile(conf, callbackId){}, WX_OnEventRegister() {},
WX_CloseBLEConnection(conf, callbackId){}, WX_OffEventRegister() {},
WX_CloseBluetoothAdapter(conf, callbackId){},
WX_CompressImage(conf, callbackId){},
WX_CreateBLEConnection(conf, callbackId){},
WX_CreateBLEPeripheralServer(conf, callbackId){},
WX_ExitMiniProgram(conf, callbackId){},
WX_ExitVoIPChat(conf, callbackId){},
WX_FaceDetect(conf, callbackId){},
WX_GetAvailableAudioSources(conf, callbackId){},
WX_GetBLEDeviceCharacteristics(conf, callbackId){},
WX_GetBLEDeviceRSSI(conf, callbackId){},
WX_GetBLEDeviceServices(conf, callbackId){},
WX_GetBLEMTU(conf, callbackId){},
WX_GetBackgroundFetchData(conf, callbackId){},
WX_GetBackgroundFetchToken(conf, callbackId){},
WX_GetBatteryInfo(conf, callbackId){},
WX_GetBeacons(conf, callbackId){},
WX_GetBluetoothAdapterState(conf, callbackId){},
WX_GetBluetoothDevices(conf, callbackId){},
WX_GetChannelsLiveInfo(conf, callbackId){},
WX_GetChannelsLiveNoticeInfo(conf, callbackId){},
WX_GetClipboardData(conf, callbackId){},
WX_GetConnectedBluetoothDevices(conf, callbackId){},
WX_GetDeviceBenchmarkInfo(conf, callbackId){},
WX_GetExtConfig(conf, callbackId){},
WX_GetFuzzyLocation(conf, callbackId){},
WX_GetGameClubData(conf, callbackId){},
WX_GetGroupEnterInfo(conf, callbackId){},
WX_GetInferenceEnvInfo(conf, callbackId){},
WX_GetLocalIPAddress(conf, callbackId){},
WX_GetNetworkType(conf, callbackId){},
WX_GetPrivacySetting(conf, callbackId){},
WX_GetScreenBrightness(conf, callbackId){},
WX_GetScreenRecordingState(conf, callbackId){},
WX_GetSetting(conf, callbackId){},
WX_GetShareInfo(conf, callbackId){},
WX_GetStorageInfo(conf, callbackId){},
WX_GetSystemInfo(conf, callbackId){},
WX_GetSystemInfoAsync(conf, callbackId){},
WX_GetUserInfo(conf, callbackId){},
WX_GetUserInteractiveStorage(conf, callbackId){},
WX_GetWeRunData(conf, callbackId){},
WX_HideKeyboard(conf, callbackId){},
WX_HideLoading(conf, callbackId){},
WX_HideShareMenu(conf, callbackId){},
WX_HideToast(conf, callbackId){},
WX_InitFaceDetect(conf, callbackId){},
WX_IsBluetoothDevicePaired(conf, callbackId){},
WX_JoinVoIPChat(conf, callbackId){},
WX_Login(conf, callbackId){},
WX_MakeBluetoothPair(conf, callbackId){},
WX_NavigateToMiniProgram(conf, callbackId){},
WX_NotifyBLECharacteristicValueChange(conf, callbackId){},
WX_OpenAppAuthorizeSetting(conf, callbackId){},
WX_OpenBluetoothAdapter(conf, callbackId){},
WX_OpenCard(conf, callbackId){},
WX_OpenChannelsActivity(conf, callbackId){},
WX_OpenChannelsEvent(conf, callbackId){},
WX_OpenChannelsLive(conf, callbackId){},
WX_OpenChannelsUserProfile(conf, callbackId){},
WX_OpenCustomerServiceChat(conf, callbackId){},
WX_OpenCustomerServiceConversation(conf, callbackId){},
WX_OpenPrivacyContract(conf, callbackId){},
WX_OpenSetting(conf, callbackId){},
WX_OpenSystemBluetoothSetting(conf, callbackId){},
WX_PreviewImage(conf, callbackId){},
WX_PreviewMedia(conf, callbackId){},
WX_ReadBLECharacteristicValue(conf, callbackId){},
WX_RemoveStorage(conf, callbackId){},
WX_RemoveUserCloudStorage(conf, callbackId){},
WX_ReportScene(conf, callbackId){},
WX_RequestMidasFriendPayment(conf, callbackId){},
WX_RequestMidasPayment(conf, callbackId){},
WX_RequestMidasPaymentGameItem(conf, callbackId){},
WX_RequestSubscribeMessage(conf, callbackId){},
WX_RequestSubscribeSystemMessage(conf, callbackId){},
WX_RequirePrivacyAuthorize(conf, callbackId){},
WX_RestartMiniProgram(conf, callbackId){},
WX_SaveFileToDisk(conf, callbackId){},
WX_SaveImageToPhotosAlbum(conf, callbackId){},
WX_ScanCode(conf, callbackId){},
WX_SetBLEMTU(conf, callbackId){},
WX_SetBackgroundFetchToken(conf, callbackId){},
WX_SetClipboardData(conf, callbackId){},
WX_SetDeviceOrientation(conf, callbackId){},
WX_SetEnableDebug(conf, callbackId){},
WX_SetInnerAudioOption(conf, callbackId){},
WX_SetKeepScreenOn(conf, callbackId){},
WX_SetMenuStyle(conf, callbackId){},
WX_SetScreenBrightness(conf, callbackId){},
WX_SetStatusBarStyle(conf, callbackId){},
WX_SetUserCloudStorage(conf, callbackId){},
WX_SetVisualEffectOnCapture(conf, callbackId){},
WX_ShowActionSheet(conf, callbackId){},
WX_ShowKeyboard(conf, callbackId){},
WX_ShowLoading(conf, callbackId){},
WX_ShowModal(conf, callbackId){},
WX_ShowShareImageMenu(conf, callbackId){},
WX_ShowShareMenu(conf, callbackId){},
WX_ShowToast(conf, callbackId){},
WX_StartAccelerometer(conf, callbackId){},
WX_StartBeaconDiscovery(conf, callbackId){},
WX_StartBluetoothDevicesDiscovery(conf, callbackId){},
WX_StartCompass(conf, callbackId){},
WX_StartDeviceMotionListening(conf, callbackId){},
WX_StopAccelerometer(conf, callbackId){},
WX_StopBeaconDiscovery(conf, callbackId){},
WX_StopBluetoothDevicesDiscovery(conf, callbackId){},
WX_StopCompass(conf, callbackId){},
WX_StopDeviceMotionListening(conf, callbackId){},
WX_StopFaceDetect(conf, callbackId){},
WX_UpdateKeyboard(conf, callbackId){},
WX_UpdateShareMenu(conf, callbackId){},
WX_UpdateVoIPChatMuteConfig(conf, callbackId){},
WX_UpdateWeChatApp(conf, callbackId){},
WX_VibrateLong(conf, callbackId){},
WX_VibrateShort(conf, callbackId){},
WX_WriteBLECharacteristicValue(conf, callbackId){},
WX_StartGameLive(conf, callbackId){},
WX_CheckGameLiveEnabled(conf, callbackId){},
WX_GetUserCurrentGameliveInfo(conf, callbackId){},
WX_GetUserRecentGameLiveInfo(conf, callbackId){},
WX_GetUserGameLiveDetails(conf, callbackId){},
WX_OpenChannelsLiveCollection(conf, callbackId){},
WX_OpenPage(conf, callbackId){},
WX_RequestSubscribeLiveActivity(conf, callbackId){},
WX_OpenBusinessView(conf, callbackId){},
WX_ExitPointerLock() {},
WX_OperateGameRecorderVideo() {},
WX_RemoveStorageSync() {},
WX_ReportEvent() {},
WX_ReportPerformance() {},
WX_ReportUserBehaviorBranchAnalytics() {},
WX_RequestPointerLock() {},
WX_ReserveChannelsLive() {},
WX_RevokeBufferURL() {},
WX_SetPreferredFramesPerSecond() {},
WX_SetStorageSync() {},
WX_ShareAppMessage() {},
WX_TriggerGC() {},
WX_OnAccelerometerChange() {},
WX_OffAccelerometerChange() {},
WX_OnAudioInterruptionBegin() {},
WX_OffAudioInterruptionBegin() {},
WX_OnAudioInterruptionEnd() {},
WX_OffAudioInterruptionEnd() {},
WX_OnBLEConnectionStateChange() {},
WX_OffBLEConnectionStateChange() {},
WX_OnBLEMTUChange() {},
WX_OffBLEMTUChange() {},
WX_OnBLEPeripheralConnectionStateChanged() {},
WX_OffBLEPeripheralConnectionStateChanged() {},
WX_OnBackgroundFetchData() {},
WX_OnBeaconServiceChange() {},
WX_OffBeaconServiceChange() {},
WX_OnBeaconUpdate() {},
WX_OffBeaconUpdate() {},
WX_OnBluetoothAdapterStateChange() {},
WX_OffBluetoothAdapterStateChange() {},
WX_OnBluetoothDeviceFound() {},
WX_OffBluetoothDeviceFound() {},
WX_OnCompassChange() {},
WX_OffCompassChange() {},
WX_OnDeviceMotionChange() {},
WX_OffDeviceMotionChange() {},
WX_OnDeviceOrientationChange() {},
WX_OffDeviceOrientationChange() {},
WX_OnError() {},
WX_OffError() {},
WX_OnHide() {},
WX_OffHide() {},
WX_OnInteractiveStorageModified() {},
WX_OffInteractiveStorageModified() {},
WX_OnKeyDown() {},
WX_OffKeyDown() {},
WX_OnKeyUp() {},
WX_OffKeyUp() {},
WX_OnKeyboardComplete() {},
WX_OffKeyboardComplete() {},
WX_OnKeyboardConfirm() {},
WX_OffKeyboardConfirm() {},
WX_OnKeyboardHeightChange() {},
WX_OffKeyboardHeightChange() {},
WX_OnKeyboardInput() {},
WX_OffKeyboardInput() {},
WX_OnMemoryWarning() {},
WX_OffMemoryWarning() {},
WX_OnMenuButtonBoundingClientRectWeightChange() {},
WX_OffMenuButtonBoundingClientRectWeightChange() {},
WX_OnMessage() {},
WX_OnMouseDown() {},
WX_OffMouseDown() {},
WX_OnMouseMove() {},
WX_OffMouseMove() {},
WX_OnMouseUp() {},
WX_OffMouseUp() {},
WX_OnNetworkStatusChange() {},
WX_OffNetworkStatusChange() {},
WX_OnNetworkWeakChange() {},
WX_OffNetworkWeakChange() {},
WX_OnScreenRecordingStateChanged() {},
WX_OffScreenRecordingStateChanged() {},
WX_OnShareMessageToFriend() {},
WX_OnShow() {},
WX_OffShow() {},
WX_OnUnhandledRejection() {},
WX_OffUnhandledRejection() {},
WX_OnUserCaptureScreen() {},
WX_OffUserCaptureScreen() {},
WX_OnVoIPChatInterrupted() {},
WX_OffVoIPChatInterrupted() {},
WX_OnVoIPChatMembersChanged() {},
WX_OffVoIPChatMembersChanged() {},
WX_OnVoIPChatSpeakersChanged() {},
WX_OffVoIPChatSpeakersChanged() {},
WX_OnVoIPChatStateChanged() {},
WX_OffVoIPChatStateChanged() {},
WX_OnWheel() {},
WX_OffWheel() {},
WX_OnWindowResize() {},
WX_OffWindowResize() {},
WX_OnAddToFavorites() {}, WX_OnAddToFavorites() {},
WX_OnAddToFavorites_Resolve(conf){}, WX_OnAddToFavorites_Resolve(conf){},
WX_OffAddToFavorites() {}, WX_OffAddToFavorites() {},
@ -625,118 +402,44 @@
WX_OnGameLiveStateChange_Resolve(conf){}, WX_OnGameLiveStateChange_Resolve(conf){},
WX_OffGameLiveStateChange() {}, WX_OffGameLiveStateChange() {},
WX_SetHandoffQuery(query){ WX_SyncFunction_t() {
return ""; return "";
}, },
WX_GetAccountInfoSync(){ WX_SyncFunction_tt() {
return JSON.stringify({});
},
WX_GetAppAuthorizeSetting(){
return JSON.stringify({});
},
WX_GetAppBaseInfo(){
return JSON.stringify({});
},
WX_GetBatteryInfoSync(){
return JSON.stringify({});
},
WX_GetDeviceInfo(){
return JSON.stringify({});
},
WX_GetEnterOptionsSync(){
return JSON.stringify({});
},
WX_GetExptInfoSync(keys){
return JSON.stringify({});
},
WX_GetExtConfigSync(){
return JSON.stringify({});
},
WX_GetLaunchOptionsSync(){
return JSON.stringify({});
},
WX_GetMenuButtonBoundingClientRect(){
return JSON.stringify({});
},
WX_GetStorageInfoSync(){
return JSON.stringify({});
},
WX_GetSystemInfoSync(){
return JSON.stringify({});
},
WX_GetSystemSetting(){
return JSON.stringify({});
},
WX_GetWindowInfo(){
return JSON.stringify({});
},
WX_CreateImageData(width, height){
return JSON.stringify({});
},
WX_CreatePath2D(){
return JSON.stringify({});
},
WX_IsPointerLocked(){
return ""; return "";
}, },
WX_IsVKSupport(version){ WX_SyncFunction_bt() {
return false;
},
WX_SyncFunction_nt() {
return 0;
},
WX_SyncFunction_bs() {
return false;
},
WX_SyncFunction_b() {
return false;
},
WX_SyncFunction_bsnn() {
return false;
},
WX_SyncFunction_ss() {
return ""; return "";
}, },
WX_SetCursor(path, x, y){ WX_SyncFunction_tnn() {
return ""; return "";
}, },
WX_SetMessageToFriendQuery(option){ WX_ClassFunction() {return ""},
WX_ClassOneWayFunction() {return ""},
WX_ClassSetProperty() {},
WX_ClassOneWayNoFunction_v() {},
WX_ClassOneWayNoFunction_vs() {},
WX_ClassOneWayNoFunction_t() {
return ""; return "";
}, },
WX_GetTextLineHeight(option){ WX_ClassOneWayNoFunction_vt() {},
return ""; WX_ClassOnEventFunction() {},
}, WX_ClassOffEventFunction() {}, };
WX_LoadFont(path){
return "";
},
WX_GetGameLiveState(){
return JSON.stringify({});
},
WX_DownloadFile() {return ""},
WX_CreateFeedbackButton() {return ""},
WX_GetLogManager() {return ""},
WX_GetRealtimeLogManager() {return ""},
WX_GetUpdateManager() {return ""},
WX_CreateVideoDecoder() {return ""},
WX_DownloadTaskAbort() {},
WX_DownloadTaskOffHeadersReceived() {},
WX_DownloadTaskOffProgressUpdate() {},
WX_DownloadTaskOnHeadersReceived() {},
WX_DownloadTaskOnProgressUpdate() {},
WXFeedbackButtonSetProperty() {},
WX_FeedbackButtonDestroy() {},
WX_FeedbackButtonHide() {},
WX_FeedbackButtonOffTap() {},
WX_FeedbackButtonOnTap() {},
WX_FeedbackButtonShow() {},
WX_LogManagerDebug() {},
WX_LogManagerInfo() {},
WX_LogManagerLog() {},
WX_LogManagerWarn() {},
WX_RealtimeLogManagerAddFilterMsg() {},
WX_RealtimeLogManagerError() {},
WX_RealtimeLogManagerInfo() {},
WX_RealtimeLogManagerSetFilterMsg() {},
WX_RealtimeLogManagerWarn() {},
WX_UpdateManagerApplyUpdate() {},
WX_UpdateManagerOnCheckForUpdate() {},
WX_UpdateManagerOnUpdateFailed() {},
WX_UpdateManagerOnUpdateReady() {},
WX_VideoDecoderGetFrameData() {},
WX_VideoDecoderRemove() {},
WX_VideoDecoderSeek() {},
WX_VideoDecoderStart() {},
WX_VideoDecoderStop() {},
WX_VideoDecoderOff() {},
WX_VideoDecoderOn() {},
};
var downloadedTextures = {}; var downloadedTextures = {};
var downloadingTextures = {}; var downloadingTextures = {};
var textureHandler = { var textureHandler = {

View File

@ -449,238 +449,15 @@
WX_CloudDeleteFile() {}, WX_CloudDeleteFile() {},
WX_CloudCDN() {}, WX_CloudCDN() {},
WXLaunchOperaBridge() {}, WXLaunchOperaBridge() {},
WX_AddCard(conf, callbackId){}, WX_OneWayFunction(functionName, successType, failType, completeType, conf, callbackId){},
WX_AuthPrivateMessage(conf, callbackId){}, WX_OneWayNoFunction_v() {},
WX_Authorize(conf, callbackId){}, WX_OneWayNoFunction_vs() {},
WX_CheckIsAddedToMyMiniProgram(conf, callbackId){}, WX_OneWayNoFunction_vt() {},
WX_CheckSession(conf, callbackId){}, WX_OneWayNoFunction_vst() {},
WX_ChooseImage(conf, callbackId){}, WX_OneWayNoFunction_vsn() {},
WX_ChooseMedia(conf, callbackId){}, WX_OneWayNoFunction_vnns() {},
WX_ChooseMessageFile(conf, callbackId){}, WX_OnEventRegister() {},
WX_CloseBLEConnection(conf, callbackId){}, WX_OffEventRegister() {},
WX_CloseBluetoothAdapter(conf, callbackId){},
WX_CompressImage(conf, callbackId){},
WX_CreateBLEConnection(conf, callbackId){},
WX_CreateBLEPeripheralServer(conf, callbackId){},
WX_ExitMiniProgram(conf, callbackId){},
WX_ExitVoIPChat(conf, callbackId){},
WX_FaceDetect(conf, callbackId){},
WX_GetAvailableAudioSources(conf, callbackId){},
WX_GetBLEDeviceCharacteristics(conf, callbackId){},
WX_GetBLEDeviceRSSI(conf, callbackId){},
WX_GetBLEDeviceServices(conf, callbackId){},
WX_GetBLEMTU(conf, callbackId){},
WX_GetBackgroundFetchData(conf, callbackId){},
WX_GetBackgroundFetchToken(conf, callbackId){},
WX_GetBatteryInfo(conf, callbackId){},
WX_GetBeacons(conf, callbackId){},
WX_GetBluetoothAdapterState(conf, callbackId){},
WX_GetBluetoothDevices(conf, callbackId){},
WX_GetChannelsLiveInfo(conf, callbackId){},
WX_GetChannelsLiveNoticeInfo(conf, callbackId){},
WX_GetClipboardData(conf, callbackId){},
WX_GetConnectedBluetoothDevices(conf, callbackId){},
WX_GetDeviceBenchmarkInfo(conf, callbackId){},
WX_GetExtConfig(conf, callbackId){},
WX_GetFuzzyLocation(conf, callbackId){},
WX_GetGameClubData(conf, callbackId){},
WX_GetGroupEnterInfo(conf, callbackId){},
WX_GetInferenceEnvInfo(conf, callbackId){},
WX_GetLocalIPAddress(conf, callbackId){},
WX_GetNetworkType(conf, callbackId){},
WX_GetPrivacySetting(conf, callbackId){},
WX_GetScreenBrightness(conf, callbackId){},
WX_GetScreenRecordingState(conf, callbackId){},
WX_GetSetting(conf, callbackId){},
WX_GetShareInfo(conf, callbackId){},
WX_GetStorageInfo(conf, callbackId){},
WX_GetSystemInfo(conf, callbackId){},
WX_GetSystemInfoAsync(conf, callbackId){},
WX_GetUserInfo(conf, callbackId){},
WX_GetUserInteractiveStorage(conf, callbackId){},
WX_GetWeRunData(conf, callbackId){},
WX_HideKeyboard(conf, callbackId){},
WX_HideLoading(conf, callbackId){},
WX_HideShareMenu(conf, callbackId){},
WX_HideToast(conf, callbackId){},
WX_InitFaceDetect(conf, callbackId){},
WX_IsBluetoothDevicePaired(conf, callbackId){},
WX_JoinVoIPChat(conf, callbackId){},
WX_Login(conf, callbackId){},
WX_MakeBluetoothPair(conf, callbackId){},
WX_NavigateToMiniProgram(conf, callbackId){},
WX_NotifyBLECharacteristicValueChange(conf, callbackId){},
WX_OpenAppAuthorizeSetting(conf, callbackId){},
WX_OpenBluetoothAdapter(conf, callbackId){},
WX_OpenCard(conf, callbackId){},
WX_OpenChannelsActivity(conf, callbackId){},
WX_OpenChannelsEvent(conf, callbackId){},
WX_OpenChannelsLive(conf, callbackId){},
WX_OpenChannelsUserProfile(conf, callbackId){},
WX_OpenCustomerServiceChat(conf, callbackId){},
WX_OpenCustomerServiceConversation(conf, callbackId){},
WX_OpenPrivacyContract(conf, callbackId){},
WX_OpenSetting(conf, callbackId){},
WX_OpenSystemBluetoothSetting(conf, callbackId){},
WX_PreviewImage(conf, callbackId){},
WX_PreviewMedia(conf, callbackId){},
WX_ReadBLECharacteristicValue(conf, callbackId){},
WX_RemoveStorage(conf, callbackId){},
WX_RemoveUserCloudStorage(conf, callbackId){},
WX_ReportScene(conf, callbackId){},
WX_RequestMidasFriendPayment(conf, callbackId){},
WX_RequestMidasPayment(conf, callbackId){},
WX_RequestMidasPaymentGameItem(conf, callbackId){},
WX_RequestSubscribeMessage(conf, callbackId){},
WX_RequestSubscribeSystemMessage(conf, callbackId){},
WX_RequirePrivacyAuthorize(conf, callbackId){},
WX_RestartMiniProgram(conf, callbackId){},
WX_SaveFileToDisk(conf, callbackId){},
WX_SaveImageToPhotosAlbum(conf, callbackId){},
WX_ScanCode(conf, callbackId){},
WX_SetBLEMTU(conf, callbackId){},
WX_SetBackgroundFetchToken(conf, callbackId){},
WX_SetClipboardData(conf, callbackId){},
WX_SetDeviceOrientation(conf, callbackId){},
WX_SetEnableDebug(conf, callbackId){},
WX_SetInnerAudioOption(conf, callbackId){},
WX_SetKeepScreenOn(conf, callbackId){},
WX_SetMenuStyle(conf, callbackId){},
WX_SetScreenBrightness(conf, callbackId){},
WX_SetStatusBarStyle(conf, callbackId){},
WX_SetUserCloudStorage(conf, callbackId){},
WX_SetVisualEffectOnCapture(conf, callbackId){},
WX_ShowActionSheet(conf, callbackId){},
WX_ShowKeyboard(conf, callbackId){},
WX_ShowLoading(conf, callbackId){},
WX_ShowModal(conf, callbackId){},
WX_ShowShareImageMenu(conf, callbackId){},
WX_ShowShareMenu(conf, callbackId){},
WX_ShowToast(conf, callbackId){},
WX_StartAccelerometer(conf, callbackId){},
WX_StartBeaconDiscovery(conf, callbackId){},
WX_StartBluetoothDevicesDiscovery(conf, callbackId){},
WX_StartCompass(conf, callbackId){},
WX_StartDeviceMotionListening(conf, callbackId){},
WX_StopAccelerometer(conf, callbackId){},
WX_StopBeaconDiscovery(conf, callbackId){},
WX_StopBluetoothDevicesDiscovery(conf, callbackId){},
WX_StopCompass(conf, callbackId){},
WX_StopDeviceMotionListening(conf, callbackId){},
WX_StopFaceDetect(conf, callbackId){},
WX_UpdateKeyboard(conf, callbackId){},
WX_UpdateShareMenu(conf, callbackId){},
WX_UpdateVoIPChatMuteConfig(conf, callbackId){},
WX_UpdateWeChatApp(conf, callbackId){},
WX_VibrateLong(conf, callbackId){},
WX_VibrateShort(conf, callbackId){},
WX_WriteBLECharacteristicValue(conf, callbackId){},
WX_StartGameLive(conf, callbackId){},
WX_CheckGameLiveEnabled(conf, callbackId){},
WX_GetUserCurrentGameliveInfo(conf, callbackId){},
WX_GetUserRecentGameLiveInfo(conf, callbackId){},
WX_GetUserGameLiveDetails(conf, callbackId){},
WX_OpenChannelsLiveCollection(conf, callbackId){},
WX_OpenPage(conf, callbackId){},
WX_RequestSubscribeLiveActivity(conf, callbackId){},
WX_OpenBusinessView(conf, callbackId){},
WX_ExitPointerLock() {},
WX_OperateGameRecorderVideo() {},
WX_RemoveStorageSync() {},
WX_ReportEvent() {},
WX_ReportPerformance() {},
WX_ReportUserBehaviorBranchAnalytics() {},
WX_RequestPointerLock() {},
WX_ReserveChannelsLive() {},
WX_RevokeBufferURL() {},
WX_SetPreferredFramesPerSecond() {},
WX_SetStorageSync() {},
WX_ShareAppMessage() {},
WX_TriggerGC() {},
WX_OnAccelerometerChange() {},
WX_OffAccelerometerChange() {},
WX_OnAudioInterruptionBegin() {},
WX_OffAudioInterruptionBegin() {},
WX_OnAudioInterruptionEnd() {},
WX_OffAudioInterruptionEnd() {},
WX_OnBLEConnectionStateChange() {},
WX_OffBLEConnectionStateChange() {},
WX_OnBLEMTUChange() {},
WX_OffBLEMTUChange() {},
WX_OnBLEPeripheralConnectionStateChanged() {},
WX_OffBLEPeripheralConnectionStateChanged() {},
WX_OnBackgroundFetchData() {},
WX_OnBeaconServiceChange() {},
WX_OffBeaconServiceChange() {},
WX_OnBeaconUpdate() {},
WX_OffBeaconUpdate() {},
WX_OnBluetoothAdapterStateChange() {},
WX_OffBluetoothAdapterStateChange() {},
WX_OnBluetoothDeviceFound() {},
WX_OffBluetoothDeviceFound() {},
WX_OnCompassChange() {},
WX_OffCompassChange() {},
WX_OnDeviceMotionChange() {},
WX_OffDeviceMotionChange() {},
WX_OnDeviceOrientationChange() {},
WX_OffDeviceOrientationChange() {},
WX_OnError() {},
WX_OffError() {},
WX_OnHide() {},
WX_OffHide() {},
WX_OnInteractiveStorageModified() {},
WX_OffInteractiveStorageModified() {},
WX_OnKeyDown() {},
WX_OffKeyDown() {},
WX_OnKeyUp() {},
WX_OffKeyUp() {},
WX_OnKeyboardComplete() {},
WX_OffKeyboardComplete() {},
WX_OnKeyboardConfirm() {},
WX_OffKeyboardConfirm() {},
WX_OnKeyboardHeightChange() {},
WX_OffKeyboardHeightChange() {},
WX_OnKeyboardInput() {},
WX_OffKeyboardInput() {},
WX_OnMemoryWarning() {},
WX_OffMemoryWarning() {},
WX_OnMenuButtonBoundingClientRectWeightChange() {},
WX_OffMenuButtonBoundingClientRectWeightChange() {},
WX_OnMessage() {},
WX_OnMouseDown() {},
WX_OffMouseDown() {},
WX_OnMouseMove() {},
WX_OffMouseMove() {},
WX_OnMouseUp() {},
WX_OffMouseUp() {},
WX_OnNetworkStatusChange() {},
WX_OffNetworkStatusChange() {},
WX_OnNetworkWeakChange() {},
WX_OffNetworkWeakChange() {},
WX_OnScreenRecordingStateChanged() {},
WX_OffScreenRecordingStateChanged() {},
WX_OnShareMessageToFriend() {},
WX_OnShow() {},
WX_OffShow() {},
WX_OnUnhandledRejection() {},
WX_OffUnhandledRejection() {},
WX_OnUserCaptureScreen() {},
WX_OffUserCaptureScreen() {},
WX_OnVoIPChatInterrupted() {},
WX_OffVoIPChatInterrupted() {},
WX_OnVoIPChatMembersChanged() {},
WX_OffVoIPChatMembersChanged() {},
WX_OnVoIPChatSpeakersChanged() {},
WX_OffVoIPChatSpeakersChanged() {},
WX_OnVoIPChatStateChanged() {},
WX_OffVoIPChatStateChanged() {},
WX_OnWheel() {},
WX_OffWheel() {},
WX_OnWindowResize() {},
WX_OffWindowResize() {},
WX_OnAddToFavorites() {}, WX_OnAddToFavorites() {},
WX_OnAddToFavorites_Resolve(conf){}, WX_OnAddToFavorites_Resolve(conf){},
WX_OffAddToFavorites() {}, WX_OffAddToFavorites() {},
@ -697,118 +474,44 @@
WX_OnGameLiveStateChange_Resolve(conf){}, WX_OnGameLiveStateChange_Resolve(conf){},
WX_OffGameLiveStateChange() {}, WX_OffGameLiveStateChange() {},
WX_SetHandoffQuery(query){ WX_SyncFunction_t() {
return ""; return "";
}, },
WX_GetAccountInfoSync(){ WX_SyncFunction_tt() {
return JSON.stringify({});
},
WX_GetAppAuthorizeSetting(){
return JSON.stringify({});
},
WX_GetAppBaseInfo(){
return JSON.stringify({});
},
WX_GetBatteryInfoSync(){
return JSON.stringify({});
},
WX_GetDeviceInfo(){
return JSON.stringify({});
},
WX_GetEnterOptionsSync(){
return JSON.stringify({});
},
WX_GetExptInfoSync(keys){
return JSON.stringify({});
},
WX_GetExtConfigSync(){
return JSON.stringify({});
},
WX_GetLaunchOptionsSync(){
return JSON.stringify({});
},
WX_GetMenuButtonBoundingClientRect(){
return JSON.stringify({});
},
WX_GetStorageInfoSync(){
return JSON.stringify({});
},
WX_GetSystemInfoSync(){
return JSON.stringify({});
},
WX_GetSystemSetting(){
return JSON.stringify({});
},
WX_GetWindowInfo(){
return JSON.stringify({});
},
WX_CreateImageData(width, height){
return JSON.stringify({});
},
WX_CreatePath2D(){
return JSON.stringify({});
},
WX_IsPointerLocked(){
return ""; return "";
}, },
WX_IsVKSupport(version){ WX_SyncFunction_bt() {
return false;
},
WX_SyncFunction_nt() {
return 0;
},
WX_SyncFunction_bs() {
return false;
},
WX_SyncFunction_b() {
return false;
},
WX_SyncFunction_bsnn() {
return false;
},
WX_SyncFunction_ss() {
return ""; return "";
}, },
WX_SetCursor(path, x, y){ WX_SyncFunction_tnn() {
return ""; return "";
}, },
WX_SetMessageToFriendQuery(option){ WX_ClassFunction() {return ""},
WX_ClassOneWayFunction() {return ""},
WX_ClassSetProperty() {},
WX_ClassOneWayNoFunction_v() {},
WX_ClassOneWayNoFunction_vs() {},
WX_ClassOneWayNoFunction_t() {
return ""; return "";
}, },
WX_GetTextLineHeight(option){ WX_ClassOneWayNoFunction_vt() {},
return ""; WX_ClassOnEventFunction() {},
}, WX_ClassOffEventFunction() {}, };
WX_LoadFont(path){
return "";
},
WX_GetGameLiveState(){
return JSON.stringify({});
},
WX_DownloadFile() {return ""},
WX_CreateFeedbackButton() {return ""},
WX_GetLogManager() {return ""},
WX_GetRealtimeLogManager() {return ""},
WX_GetUpdateManager() {return ""},
WX_CreateVideoDecoder() {return ""},
WX_DownloadTaskAbort() {},
WX_DownloadTaskOffHeadersReceived() {},
WX_DownloadTaskOffProgressUpdate() {},
WX_DownloadTaskOnHeadersReceived() {},
WX_DownloadTaskOnProgressUpdate() {},
WXFeedbackButtonSetProperty() {},
WX_FeedbackButtonDestroy() {},
WX_FeedbackButtonHide() {},
WX_FeedbackButtonOffTap() {},
WX_FeedbackButtonOnTap() {},
WX_FeedbackButtonShow() {},
WX_LogManagerDebug() {},
WX_LogManagerInfo() {},
WX_LogManagerLog() {},
WX_LogManagerWarn() {},
WX_RealtimeLogManagerAddFilterMsg() {},
WX_RealtimeLogManagerError() {},
WX_RealtimeLogManagerInfo() {},
WX_RealtimeLogManagerSetFilterMsg() {},
WX_RealtimeLogManagerWarn() {},
WX_UpdateManagerApplyUpdate() {},
WX_UpdateManagerOnCheckForUpdate() {},
WX_UpdateManagerOnUpdateFailed() {},
WX_UpdateManagerOnUpdateReady() {},
WX_VideoDecoderGetFrameData() {},
WX_VideoDecoderRemove() {},
WX_VideoDecoderSeek() {},
WX_VideoDecoderStart() {},
WX_VideoDecoderStop() {},
WX_VideoDecoderOff() {},
WX_VideoDecoderOn() {},
};
var downloadedTextures = {}; var downloadedTextures = {};
var downloadingTextures = {}; var downloadingTextures = {};
var textureHandler = { var textureHandler = {

Some files were not shown because too many files have changed in this diff Show More