mirror of
https://github.com/wechat-miniprogram/minigame-tuanjie-transform-sdk.git
synced 2025-11-13 03:35:55 +08:00
Auto-publish pre-release WXSDK.
This commit is contained in:
parent
5e68a17330
commit
77989fbaac
@ -6,7 +6,7 @@ Removed - 删除功能/接口
|
||||
Fixed - 修复问题
|
||||
Others - 其他
|
||||
-->
|
||||
## v0.1.26 【普通更新】
|
||||
## v0.1.26 【预发布】
|
||||
### Feature
|
||||
* 普通:增加禁止多点触控的配置
|
||||
### Fixed
|
||||
|
||||
@ -1285,12 +1285,15 @@ namespace WeChatWASM
|
||||
if (File.Exists(symbolPath))
|
||||
{
|
||||
File.Copy(symbolPath, Path.Combine(config.ProjectConf.DST, miniGameDir, "webgl.wasm.symbols.unityweb"), true);
|
||||
// gen symbols.br
|
||||
Brotlib("webgl.wasm.symbols.unityweb.br", symbolPath, Path.Combine(config.ProjectConf.DST, miniGameDir, "webgl.wasm.symbols.unityweb.br"));
|
||||
}
|
||||
|
||||
var info = new FileInfo(dataPath);
|
||||
dataFileSize = info.Length.ToString();
|
||||
UnityEngine.Debug.LogFormat("[Converter] that to genarate md5 and copy files ended");
|
||||
if (config.ProjectConf.Appid == "wx7c792ca878775717") // 快适配小游戏示例
|
||||
// 若APPID为快适配小游戏示例,则插入预览盒子
|
||||
if (config.ProjectConf.Appid == "wx7c792ca878775717")
|
||||
{
|
||||
InsertPreviewCode();
|
||||
}
|
||||
@ -1399,14 +1402,9 @@ namespace WeChatWASM
|
||||
" } else {\n" +
|
||||
" this._send = GameGlobal.Module.SendMessage;\n" +
|
||||
" }",
|
||||
},
|
||||
new Rule()
|
||||
{
|
||||
old = "3.5.1", // project.config.json 转换插件 hardcode
|
||||
newStr = "latest",
|
||||
}
|
||||
};
|
||||
string[] files = { "game.js", "game.json", "unity-sdk/module-helper.js", "project.config.json" };
|
||||
string[] files = { "game.js", "game.json", "unity-sdk/module-helper.js" };
|
||||
ReplaceFileContent(files, rules);
|
||||
Debug.LogWarning("[WeChat Preview] InsertPreviewCode End");
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@ namespace WeChatWASM
|
||||
{
|
||||
public class WXPluginVersion
|
||||
{
|
||||
public static string pluginVersion = "202505070335"; // 这一行不要改他,导出的时候会自动替换
|
||||
public static string pluginVersion = "202505070654"; // 这一行不要改他,导出的时候会自动替换
|
||||
}
|
||||
|
||||
public class WXPluginConf
|
||||
|
||||
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: efd1b5a9325db358e70d7a6c62aeaa71
|
||||
guid: 0b245d6103f559e72275f3cdf69ad07a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 19682f1ce552909d28f2256dfff99849
|
||||
guid: 829d9ca6330cf6658a889d953012e89b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f73b38d14ca43e58073c26e46ff01a0a
|
||||
guid: bc590f2cee8dccb3565f72bf00069f78
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -648,6 +648,7 @@ namespace WeChatWASM
|
||||
/// ## 注意事项
|
||||
/// - 基础库 v2.10.4 开始支持获取群工具小程序启动信息
|
||||
/// - 基础库 v2.17.3 开始支持获取群聊小程序消息卡片、群待办小程序启动信息
|
||||
/// - 基础库 v3.7.8 支持获取单聊群启动信息,获取的群(含单聊)唯一标识,可用于[聊天工具模式](https://developers.weixin.qq.com/minigame/dev/api/chattool/wx.openChatTool.html)。
|
||||
/// **示例代码**
|
||||
/// ```js
|
||||
/// wx.getGroupEnterInfo({
|
||||
@ -667,7 +668,10 @@ namespace WeChatWASM
|
||||
/// 获取得到的开放数据为以下 json 结构(其中 opengid 为当前群的唯一标识):
|
||||
/// ```json
|
||||
/// {
|
||||
/// "opengid": "OPENGID"
|
||||
/// "opengid": "OPENGID", // 多聊群下返回的群唯一标识
|
||||
/// "open_single_roomid": "", // 单聊群下返回的群唯一标识
|
||||
/// "group_openid": "", // 用户在当前群的唯一标识
|
||||
/// "chat_type": 3, // 聊天室类型
|
||||
/// }
|
||||
/// ```
|
||||
/// **Tips**
|
||||
@ -1400,7 +1404,7 @@ namespace WeChatWASM
|
||||
/// <summary>
|
||||
/// [wx.openCustomerServiceConversation(Object object)](https://developers.weixin.qq.com/minigame/dev/api/open-api/customer-message/wx.openCustomerServiceConversation.html)
|
||||
/// 需要基础库: `2.0.3`
|
||||
/// 进入客服会话。要求在用户发生过至少一次 touch 事件后才能调用。后台接入方式与小程序一致,详见 [客服消息接入](#)
|
||||
/// 进入客服会话。要求在用户发生过至少一次 touch 事件后才能调用。后台接入方式与小程序一致,详见 [客服消息接入](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/customer-message/customer-message.html)
|
||||
/// **注意事项**
|
||||
/// - 在客服会话内点击小程序消息卡片进入小程序时,不能通过 wx.onShow 或 wx.getEnterOptionsSync 等接口获取启动路径和参数,而是应该通过 wx.openCustomerServiceConversation 接口的 success 回调获取启动路径和参数
|
||||
/// </summary>
|
||||
@ -2150,9 +2154,6 @@ namespace WeChatWASM
|
||||
/// [wx.showShareImageMenu(Object object)](https://developers.weixin.qq.com/minigame/dev/api/share/wx.showShareImageMenu.html)
|
||||
/// 需要基础库: `2.14.3`
|
||||
/// 打开分享图片弹窗,可以将图片发送给朋友、收藏或下载
|
||||
/// **Bug & Tip**
|
||||
/// 1. `tip`: `needShowEntrance`分享的图片消息是否要带小程序入口,支持申明类目:商家自营、电商平台、餐饮服务(餐饮服务场所/餐饮服务管理企业、点餐平台、外卖平台)、旅游服务(住宿服务、景区服务、OTA、旅游管理单位)、生活服务(家政服务、丽人服务、宠物(非医院类)、婚庆服务、洗浴保健、休闲娱乐、百货/超市/便利店、开锁服务、营业性演出票务、其他宠物健康服务、洗浴保健平台、共享服务、跑腿、寄存、求职/招聘)
|
||||
/// 2. `tip`: `needShowEntrance`小游戏所有类目都支持
|
||||
/// </summary>
|
||||
public static void ShowShareImageMenu(ShowShareImageMenuOption callback)
|
||||
{
|
||||
@ -4035,6 +4036,32 @@ namespace WeChatWASM
|
||||
return WXSDKManagerHandler.Instance.GetLogManager(option);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// [[PageManager](https://developers.weixin.qq.com/minigame/dev/api/open-api/openlink/PageManager.html) wx.createPageManager()](https://developers.weixin.qq.com/minigame/dev/api/open-api/openlink/wx.createPageManager.html)
|
||||
/// 需要基础库: `3.6.7`
|
||||
/// 小游戏开放页面管理器,用于启动微信内置的各种小游戏活动、功能页面。具体OPENLINK值由不同的能力渠道获得。
|
||||
/// **示例代码**
|
||||
/// ```js
|
||||
/// const pageManager = wx.createPageManager();
|
||||
/// pageManager.load({
|
||||
/// openlink: 'xxxxxxx-xxxxxx', // 由不同渠道获得的OPENLINK值
|
||||
/// }).then((res) => {
|
||||
/// // 加载成功,res 可能携带不同活动、功能返回的特殊回包信息(具体请参阅渠道说明)
|
||||
/// console.log(res);
|
||||
/// // 加载成功后按需显示
|
||||
/// pageManager.show();
|
||||
/// }).catch((err) => {
|
||||
/// // 加载失败,请查阅 err 给出的错误信息
|
||||
/// console.error(err);
|
||||
/// })
|
||||
/// ```
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static WXPageManager CreatePageManager()
|
||||
{
|
||||
return WXSDKManagerHandler.Instance.CreatePageManager();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// [[RealtimeLogManager](https://developers.weixin.qq.com/minigame/dev/api/base/debug/RealtimeLogManager.html) wx.getRealtimeLogManager()](https://developers.weixin.qq.com/minigame/dev/api/base/debug/wx.getRealtimeLogManager.html)
|
||||
/// 需要基础库: `2.14.4`
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a96e0a653f3e68825cb4153ac98d2a5
|
||||
guid: d1923509fad5273d801f80584a472b85
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b83ce95d7a528a63cd594d912dc3d3ff
|
||||
guid: 6bbc16a61eaace418b51e28fc40a79da
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2808d90aab44b1ee252a21da58e35bba
|
||||
guid: 6ba8482d1970817d11090565d87e2341
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a40b3da71a516caf59692fdf5f5cabd
|
||||
guid: 427beb42145f5c73140f84c9e5cb2fd3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f286b1c77bca9a37d339a70b7f410cbb
|
||||
guid: fdbef2bd30d0db9b5c197df428d1c534
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fe6051c4649b0f8dda180d29a33b773c
|
||||
guid: f417801174ce9a94240521b2d0caaad9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2749dbcf672b69d1f646cab7ba08cea9
|
||||
guid: 5af76c75fc03cf59f91d470e4c04a477
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cf7449bdad8341dd6748563625165cee
|
||||
guid: a73663ff78875aa5fb0d6ea949687b68
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9a32bd403854f2c194c30c941eb3eed7
|
||||
guid: 9b3d55c539efd030c9ceaddc1c7902d4
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a7bb8833a8e168576835c1ec68f0cb66
|
||||
guid: e81fd6ad24e8a0178e3022d5dcf4b37b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c53bcbfb33e6359996b87f1a6c996029
|
||||
guid: 3aa57dadd6a9c77429daebe05297f9aa
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1267da79e757f7d23926f762b6913056
|
||||
guid: f576a58825479171ccf686818fc180c6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4d39d94b4d70729dfbdbf4b8cac439fd
|
||||
guid: 02cd4af6c9043f1a82f1e476d96696ba
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 003df7147b1574e6523d07f34ddd075c
|
||||
guid: 8f4172cd8537c9cf31dc2c30f05dca39
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 172838b944130ebaddfba4763a7821bc
|
||||
guid: 57c7da4c2e5be8146e14f49d3ab17795
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 67c5ec5b2765d179e55214a00c4743bf
|
||||
guid: fa39d11cc167ee5616259bcf82c21905
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d4cad7d5936198de751e000cc6acd696
|
||||
guid: 027f47a114ce243f8299218ee7254ec7
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 325860ffb5bd677b8408cd68654200af
|
||||
guid: dc394f32af9e9bc403d9a360646fcf6a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30f1d0200f038ef844bef617c82a6c20
|
||||
guid: d9fddd8021802de2d0330341e68a3f39
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0fb8c444a8527e8e1bb08fe7faa4c261
|
||||
guid: 20f92a7383abf6aae61858fd46bb1b8c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7133efa2e2d56beacb36021f6f5a976d
|
||||
guid: 3ffc6d4d86b0be53d4e18b8b39321824
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 05e67f2b9fe55b772474b41931ccbad5
|
||||
guid: cf9fe3d496158ebfa457bb9de98f0aa6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 64b517f445254925d626ea76ecedd5fe
|
||||
guid: 980d062124856240bc22271a1f14a418
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 64e0a9b47d84f350c8d743e76916e294
|
||||
guid: 96f4e5190dc7d74c9a9127d4cf91ab9c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 94c40353613637d01961868e423644c1
|
||||
guid: 83dac71bc22b545ecccb623cd76f7bf9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30bbb345de3b5c83b9f69cb6ca18fbc1
|
||||
guid: 58508354c46126ab356bbcf5eadd0d44
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6cfb6b44ff0e0d60777f8c5b73890112
|
||||
guid: 137939551e3d82a860a798b92177c317
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1c57316bf87dbdbbf2991696a710a281
|
||||
guid: d38ffd5a7f0f90023a6658825f81e8f8
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -33,7 +33,7 @@
|
||||
"packNpmRelationList": []
|
||||
},
|
||||
"compileType": "game",
|
||||
"libVersion": "3.5.1",
|
||||
"libVersion": "latest",
|
||||
"appid": "$APP_ID",
|
||||
"projectname": "$PROJECT_NAME",
|
||||
"simulatorType": "wechat",
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7111a97ef2df9c3c514cc18fa068bfa0
|
||||
guid: 46789518dbe6a606fa454e139e9b6a3d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7f1c8c2f6a9ad41df4ef11ba4655333d
|
||||
guid: 0306e4c88cd5e2eb6a76f04bc52cef2b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2258ff9139b90f5f2fbfedf429e15b57
|
||||
guid: c70426d430c457b3cb8368ba40cf5183
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3033451267d4dbd688d2cf9688cbda39
|
||||
guid: 95f475a3a50b3e0f40a9e8a94ff5e2a6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 37b03444b791f66c7820762069e07762
|
||||
guid: 67552593d473b096da90aa9ef6685ca9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dc381840cc746d3ae85b402219284e99
|
||||
guid: 98f22db834f63f7264206930b632882f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2d89a1dd0fe1eb9090f633d62cd0700e
|
||||
guid: 651ea0c5bb68f46892d5adc65554f140
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7f7f00e418f948aee97dd34d3ca630f5
|
||||
guid: dbd748d3d9d328b4a6a437e136b2fc6e
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ad0868418e637fe827736f41e7e3961f
|
||||
guid: 67f6e18113abf91801e9ad0f05fa5484
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 21d0ee1af2faa8aa12361a6b33b40515
|
||||
guid: 8f8e7a9a5c0e33fa80d0b5a7371d4c34
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 062ca758b128e6c23b1522943d673961
|
||||
guid: ab482fe70120e597a6d9978baa7fc898
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dd4f77f584d999f455831b89004c30b8
|
||||
guid: 70d22136611c68065f9115cc757e3b40
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ed26ca22eaa0efb3f09785d90e3192f
|
||||
guid: 92d12aba270ba48d624424f6d6b51e55
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7c2cecc418461f30dcf809034e880577
|
||||
guid: 4c95a7078026476ba71293e62a53c614
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3a9004f10554bff3eeab5b16172611ee
|
||||
guid: d0d0868fe0c1bcbc615880d5ae5b94bd
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 089cc7d83cb516f594128386791e8285
|
||||
guid: da136367efde8d088747dbd3a7be4610
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9196e4534bba438c81a3039377f4cd88
|
||||
guid: 32c7aaa5dead644963d68ce5111d99f5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60df8e5f2708ef983d934140be38cd70
|
||||
guid: 429bf2ba2247c799636c59f439f12cdc
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 483581fe5c70aa8f25152859213ef8c4
|
||||
guid: 4700a61b767ffcf76f68b85ebcf9ba61
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7d402b2887a693c82f4749a4901d723f
|
||||
guid: b77d0fb1c7542cc4ba1c290d46c27523
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1654726387c2c8991400d8bd0b981cf1
|
||||
guid: fc5de55edf20625206ebe037d70436fe
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f662c60fb8060b3d72d0ddeebd6ee73d
|
||||
guid: e344df2e84872feb8d615bca8b379b1b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff8148236b46c4939349ec48734a77ac
|
||||
guid: 5cfc0b8d895fcbcd3cf513e399b7a215
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ee81d6cc02114cbd8cad5aa5d837aa64
|
||||
guid: aab279ca5f61e758fd54f9128a286a29
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f264d29f34e8ef20449c04f642f24df7
|
||||
guid: bd1027c4125c1941edf83d9ff372e94d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3373f6ff61c44dc98b37e13630fb44ad
|
||||
guid: 249955033ad4d26e46567004109300f9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c58220de3038c4a2f5e0ec7bb10c0ed1
|
||||
guid: 738dcfe7f1a30d2fc251bfe2763fbc0a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 55e6f527c28df91314b5732ce69551e0
|
||||
guid: f6ef229a35d42746b2bd1bbb293a40f3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2eb4eab0b03c78a52dac03f0465a6706
|
||||
guid: 1e4f3a8b88c611b612d03b4edcdaf812
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 71f8eeea5df94c91f873b05d3684fd2e
|
||||
guid: bc549e92ff5ab511e1d2f60f009e4c2f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8571a7d6af588da67b874971b6f861de
|
||||
guid: bdc1e425e1e03b89480671619c1f6838
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 472d9dcb4fb09315af6c284b9f987536
|
||||
guid: 1b03e8d52e6ec6d798278e1f47703bd1
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f4739f62f7ea84f360e32a3f9b8808d
|
||||
guid: c0ec3e9b7bef8698af301c51b6673228
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 480a2ccebe1123e484310abe412ba77e
|
||||
guid: a4f696e40f0d05fd5e050637634f748c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b9ad80647831b1ae4d506d446ce7a225
|
||||
guid: 13167af4c009a520308e652d2363e7dc
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 269016ae5e9d8f86f663dad34640d629
|
||||
guid: f1cc94c7c06b3c90fe016f8faa7fdb05
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 378214ad8849f2c50babdcb9148b837e
|
||||
guid: ff1e644ac7d42f237fedc7a462336561
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b607a44b3005e1e3a08398c846f8b1fa
|
||||
guid: a06921c8cdd1ec504345ebff8db2b93f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -233,6 +233,14 @@ export const ResType = {
|
||||
GetLogManagerOption: {
|
||||
level: 'number',
|
||||
},
|
||||
LoadOption: {
|
||||
openlink: 'string',
|
||||
query: 'object',
|
||||
},
|
||||
ShowOption: {
|
||||
openlink: 'string',
|
||||
query: 'object',
|
||||
},
|
||||
Path2D: {},
|
||||
OnCheckForUpdateListenerResult: {
|
||||
hasUpdate: 'bool',
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 200e24f3569393f4601acd2c64ef2a3f
|
||||
guid: 31794a6e0dc1aacc53b8f83ec2c4c366
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 471cc0dc9bf300093c2ce9dfe3874343
|
||||
guid: 1ca306ef09019ed938f3035787513e9b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 23c3f48c4199f71ae8029f5383c402b9
|
||||
guid: f950ce0435845de5830904a6ad0cdd94
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5cf1a4186cbdbb64db956595af6a5cfd
|
||||
guid: cafa7a4985a9afbb5bda9a60012caff8
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3759d599e6c216fd7f77c93ca2a306da
|
||||
guid: 6059ffba3782729d317979d701e850ae
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 212ad7391801bff50bc53b0d791133c0
|
||||
guid: b1d5eec7c0bf18f7cae6a2507c4a57b8
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 15b3b7264c1d84e7fa9022ed9ca9b7e1
|
||||
guid: 42a18fe21f8a3c6b686d319db41fc52f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 484b93784c3bfa56d91a6f2cd754b917
|
||||
guid: 6897c77d3dd9750f61f9b9f5b37e2731
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b26d65848fc680deffef986f8c67583f
|
||||
guid: 2820333e073e73104e0f3cc51b429750
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a85d67792e34644665444f4ae70c5624
|
||||
guid: 8962d10d4c6841fc8c48567707fc52b5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 94c6c5e775c600fae169cefb9aa54874
|
||||
guid: 8b51c56dd037c8fad8884634da94c670
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 15a7c65386e5650c332551acc24f6b1b
|
||||
guid: 10cb510bc7c2dcf26eabd4d72485568e
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4da238dd293947be69b9a0a58829472d
|
||||
guid: 75bb60cc6e9edc0ae18721d7499c6963
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 71da8a1b33a7510723010ba4b43b4749
|
||||
guid: 47d8e53e946128fcc997c45852d7ba7c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 14c5e8ebf538e6cb30fb68aa91acb74d
|
||||
guid: b284926375c9c489f180bc14f5cf62f0
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ac6f9f0a70555f8db6d3323a0fdae104
|
||||
guid: 6d0b35d4d69111b1847ccf0a3fba356d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 688570fbd0f53319b5da4397105a15d0
|
||||
guid: 3486f3b8e91d20217d4dbcdaead78ddb
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1 +1 @@
|
||||
{"name":"com.qq.weixin.minigame","displayName":"WXSDK","description":"WeChat Mini Game Tuanjie Engine Adapter SDK Package.","version":"0.1.26","unity":"2019.4","unityRelease":"29f1","keywords":["Tuanjie","WX"],"dependencies":{}}
|
||||
{"name":"com.qq.weixin.minigame","displayName":"WXSDK","description":"WeChat Mini Game Tuanjie Engine Adapter SDK Package.","version":"0.1.27","unity":"2019.4","unityRelease":"29f1","keywords":["Tuanjie","WX"],"dependencies":{}}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user