mirror of
https://github.com/wechat-miniprogram/minigame-tuanjie-transform-sdk.git
synced 2026-04-22 01:35:56 +08:00
Auto-publish.
This commit is contained in:
parent
74b6f9bb48
commit
f087ec02cf
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a7b2ae7470004a7fe7388e88a3633f9a
|
||||
guid: 8c44a3f4e4a7e6890283d21803d2b864
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -216,6 +216,56 @@ namespace WeChatWASM
|
||||
return WXExportError.SUCCEED;
|
||||
}
|
||||
|
||||
private static int GetEnabledFlagStringIndex(string inAllText, string inTagStr)
|
||||
{
|
||||
try
|
||||
{
|
||||
int tagStrIdx = inAllText.IndexOf(inTagStr);
|
||||
if (tagStrIdx == -1) throw new Exception($"Tag string '{inTagStr}' not found.");
|
||||
|
||||
int enabledStrIdx = inAllText.IndexOf("enabled: ", tagStrIdx);
|
||||
if (enabledStrIdx == -1) throw new Exception("'enabled: ' string not found after tag.");
|
||||
|
||||
// inAllText[enabledStrIdx] == 'e'
|
||||
// And that is to say, inAllText[enabledStrIdx + 9] should be 0 or 1
|
||||
return enabledStrIdx + 9;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
UnityEngine.Debug.LogError($"Failed to get enabled flag string index: {ex.Message}");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
private static void SetPluginCompatibilityByModifyingMetadataFile(string inAssetPath, bool inEnabled)
|
||||
{
|
||||
try
|
||||
{
|
||||
string metaPath = AssetDatabase.GetTextMetaFilePathFromAssetPath(inAssetPath); // 获取.meta文件的路径
|
||||
string enableFlagStr = inEnabled? "1" : "0";
|
||||
|
||||
// 读取.meta文件
|
||||
// 处理WebGL
|
||||
string metaContent = File.ReadAllText(metaPath);
|
||||
int idxWebGLEnableFlag = GetEnabledFlagStringIndex(metaContent, "WebGL: WebGL");
|
||||
|
||||
metaContent = metaContent.Remove(idxWebGLEnableFlag, 1).Insert(idxWebGLEnableFlag, enableFlagStr);
|
||||
// WeixinMiniGame
|
||||
int idxWeixinMiniGameEnableFlag = GetEnabledFlagStringIndex(metaContent, "WeixinMiniGame: WeixinMiniGame");
|
||||
|
||||
metaContent = metaContent.Remove(idxWeixinMiniGameEnableFlag, 1).Insert(idxWeixinMiniGameEnableFlag, enableFlagStr);
|
||||
|
||||
// 写回.meta文件
|
||||
|
||||
File.WriteAllText(metaPath, metaContent);
|
||||
AssetDatabase.ImportAsset(inAssetPath, ImportAssetOptions.ForceUpdate);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
UnityEngine.Debug.LogError($"Failed to enable plugin asset: {ex.Message}");
|
||||
}
|
||||
}
|
||||
|
||||
private static void ProcessWxPerfBinaries()
|
||||
{
|
||||
string[] wxPerfPlugins;
|
||||
@ -250,6 +300,7 @@ namespace WeChatWASM
|
||||
#else
|
||||
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enablePerfAnalysis);
|
||||
#endif
|
||||
SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[0], config.CompileOptions.enablePerfAnalysis);
|
||||
}
|
||||
|
||||
{
|
||||
@ -262,6 +313,7 @@ namespace WeChatWASM
|
||||
#else
|
||||
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2022Plugin);
|
||||
#endif
|
||||
SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[1], bShouldEnablePerf2022Plugin);
|
||||
}
|
||||
|
||||
{
|
||||
@ -274,36 +326,29 @@ namespace WeChatWASM
|
||||
#else
|
||||
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2021Plugin);
|
||||
#endif
|
||||
SetPluginCompatibilityByModifyingMetadataFile(wxPerfPlugins[2], bShouldEnablePerf2021Plugin);
|
||||
}
|
||||
|
||||
for (int i = 0; i < wxPerfPlugins.Length; i++)
|
||||
{
|
||||
var importer = AssetImporter.GetAtPath(wxPerfPlugins[i]) as PluginImporter;
|
||||
importer.SaveAndReimport();
|
||||
AssetDatabase.WriteImportSettingsIfDirty(wxPerfPlugins[i]);
|
||||
AssetDatabase.Refresh();
|
||||
}
|
||||
AssetDatabase.Refresh();
|
||||
}
|
||||
|
||||
private static bool IsCompatibleWithUnity202203OrNewer()
|
||||
{
|
||||
#if UNITY_2022_3_OR_NEWER
|
||||
return true;
|
||||
#endif
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
static bool IsCompatibleWithUnity202103To202203()
|
||||
{
|
||||
#if UNITY_2022_3_OR_NEWER
|
||||
return false;
|
||||
#endif
|
||||
|
||||
#if !UNITY_2021_3_OR_NEWER
|
||||
#elif !UNITY_2021_3_OR_NEWER
|
||||
return false;
|
||||
#endif
|
||||
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
private static void CheckBuildTarget()
|
||||
|
||||
@ -2,7 +2,7 @@ namespace WeChatWASM
|
||||
{
|
||||
public class WXPluginVersion
|
||||
{
|
||||
public static string pluginVersion = "202410150350"; // 这一行不要改他,导出的时候会自动替换
|
||||
public static string pluginVersion = "202411040727"; // 这一行不要改他,导出的时候会自动替换
|
||||
}
|
||||
|
||||
public class WXPluginConf
|
||||
|
||||
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2701881b75bb276a4f100e476837749e
|
||||
guid: e3a203a0f026fa02c0462024b16c2e30
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 59268639dec71769dda6fdc2a772fe1d
|
||||
guid: 51b7a7b11330968c190c1ec465069fb7
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
Binary file not shown.
@ -19,7 +19,7 @@ PluginImporter:
|
||||
Exclude Editor: 1
|
||||
Exclude Linux64: 1
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude WeixinMiniGame: 0
|
||||
Exclude WeixinMiniGame: 1
|
||||
Exclude Win: 1
|
||||
Exclude Win64: 1
|
||||
- first:
|
||||
@ -38,7 +38,7 @@ PluginImporter:
|
||||
- first:
|
||||
Facebook: WebGL
|
||||
second:
|
||||
enabled: 1
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
@ -67,12 +67,12 @@ PluginImporter:
|
||||
- first:
|
||||
WebGL: WebGL
|
||||
second:
|
||||
enabled: 1
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
WeixinMiniGame: WeixinMiniGame
|
||||
second:
|
||||
enabled: 1
|
||||
enabled: 0
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,75 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f0cbdcf50f6d52cea758f1ea825443c0
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 1
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
: Any
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
Exclude Editor: 0
|
||||
Exclude Linux64: 1
|
||||
Exclude OSXUniversal: 1
|
||||
Exclude WebGL: 0
|
||||
Exclude Win: 1
|
||||
Exclude Win64: 1
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
DefaultValueInitialized: true
|
||||
OS: AnyOS
|
||||
- first:
|
||||
Standalone: Linux64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
Standalone: Win64
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: None
|
||||
- first:
|
||||
WebGL: WebGL
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
||||
Binary file not shown.
@ -3076,6 +3076,37 @@
|
||||
后端返回的经过json序列化后的数据
|
||||
</summary>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "F:WeChatWASM.RequestMidasPaymentGameItemOption.paySig" -->
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signData">
|
||||
<summary>
|
||||
<b>支付原串</b>
|
||||
具体支付参数见下面的signData,需要将数据以json格式传递
|
||||
signData例子:
|
||||
'{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}'
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signature">
|
||||
<summary>
|
||||
<b>用户态签名</b>
|
||||
signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D)
|
||||
可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.complete">
|
||||
<summary>
|
||||
接口调用结束的回调函数(调用成功、失败都会执行)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.fail">
|
||||
<summary>
|
||||
接口调用失败的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.success">
|
||||
<summary>
|
||||
接口调用成功的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.AccountInfo.miniProgram">
|
||||
<summary>
|
||||
小程序账号信息
|
||||
@ -8462,106 +8493,6 @@
|
||||
调用成功信息
|
||||
</summary>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "F:WeChatWASM.RequestMidasPaymentGameItemOption.paySig" -->
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signData">
|
||||
<summary>
|
||||
<b>支付原串</b>
|
||||
具体支付参数见下面的signData,需要将数据以json格式传递
|
||||
signData例子:
|
||||
'{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}'
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signature">
|
||||
<summary>
|
||||
<b>用户态签名</b>
|
||||
signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D)
|
||||
可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.complete">
|
||||
<summary>
|
||||
接口调用结束的回调函数(调用成功、失败都会执行)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.fail">
|
||||
<summary>
|
||||
接口调用失败的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.success">
|
||||
<summary>
|
||||
接口调用成功的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.buyQuantity">
|
||||
<summary>
|
||||
<b>购买数量</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.currencyType">
|
||||
<summary>
|
||||
<b>币种</b>
|
||||
可选值:
|
||||
- 'CNY': 人民币;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.goodsPrice">
|
||||
<summary>
|
||||
<b>道具单价(分)</b>
|
||||
用来校验价格与后台道具价格是否一致,避免用户在业务商城页看到的价格与实际价格不一致导致投诉
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.mode">
|
||||
<summary>
|
||||
<b>支付的类型</b>
|
||||
不同的支付类型有各自额外要传的附加参数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.offerId">
|
||||
<summary>
|
||||
<b>在米大师侧申请的应用id</b>
|
||||
mp-支付基础配置中的offerid
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.outTradeNo">
|
||||
<summary>
|
||||
<b>业务订单号</b>
|
||||
每个订单号只能使用一次,重复使用会失败(极端情况不保证唯一,不建议业务强依赖唯一性)。
|
||||
要求32个字符内,只能是数字、大小写字母、符号 _-|*@组成,不能以下划线(_)开头。
|
||||
若没有传入,则平台会自动填充一个,并以下划线开头。
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.productId">
|
||||
<summary>
|
||||
<b>道具ID</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.attach">
|
||||
<summary>
|
||||
<b>透传数据</b>
|
||||
发货通知时会透传给开发者
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.env">
|
||||
<summary>
|
||||
<b>环境配置</b>
|
||||
可选值:
|
||||
- 0: 米大师正式环境;
|
||||
- 1: 米大师沙箱环境;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.platform">
|
||||
<summary>
|
||||
<b>平台</b>
|
||||
可选值:
|
||||
- 'android': 安卓;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.zoneId">
|
||||
<summary>
|
||||
<b>分区ID</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestSubscribeMessageOption.tmplIds">
|
||||
<summary>
|
||||
需要订阅的消息模板的id的集合,一次调用最多可订阅3条消息(注意:iOS客户端7.0.6版本、Android客户端7.0.7版本之后的一次性订阅/长期订阅才支持多个模板消息,iOS客户端7.0.5版本、Android客户端7.0.6版本之前的一次订阅只支持一个模板消息)消息模板id在[微信公众平台(mp.weixin.qq.com)-功能-订阅消息]中配置。每个tmplId对应的模板标题需要不相同,否则会被过滤。
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: deb0171acd79c5a448225b32e9b9a835
|
||||
guid: e433b3740527c2a62e32be2cb3642757
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
Binary file not shown.
@ -3082,6 +3082,37 @@
|
||||
后端返回的经过json序列化后的数据
|
||||
</summary>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "F:WeChatWASM.RequestMidasPaymentGameItemOption.paySig" -->
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signData">
|
||||
<summary>
|
||||
<b>支付原串</b>
|
||||
具体支付参数见下面的signData,需要将数据以json格式传递
|
||||
signData例子:
|
||||
'{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}'
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signature">
|
||||
<summary>
|
||||
<b>用户态签名</b>
|
||||
signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D)
|
||||
可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.complete">
|
||||
<summary>
|
||||
接口调用结束的回调函数(调用成功、失败都会执行)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.fail">
|
||||
<summary>
|
||||
接口调用失败的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.success">
|
||||
<summary>
|
||||
接口调用成功的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.AccountInfo.miniProgram">
|
||||
<summary>
|
||||
小程序账号信息
|
||||
@ -8468,106 +8499,6 @@
|
||||
调用成功信息
|
||||
</summary>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "F:WeChatWASM.RequestMidasPaymentGameItemOption.paySig" -->
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signData">
|
||||
<summary>
|
||||
<b>支付原串</b>
|
||||
具体支付参数见下面的signData,需要将数据以json格式传递
|
||||
signData例子:
|
||||
'{"mode":"goods","offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","platform":"android","zoneId":"1","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}'
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestMidasPaymentGameItemOption.signature">
|
||||
<summary>
|
||||
<b>用户态签名</b>
|
||||
signature参数签名算法参考[用户态签名](https://developers.weixin.qq.com/minigame/dev/guide/open-ability/signature.html#%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95%E6%80%81%E7%AD%BE%E5%90%8D)
|
||||
可参考[calc_signature](https://docs.qq.com/doc/DVUN0QWJja0J5c2x4)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.complete">
|
||||
<summary>
|
||||
接口调用结束的回调函数(调用成功、失败都会执行)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.fail">
|
||||
<summary>
|
||||
接口调用失败的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WeChatWASM.RequestMidasPaymentGameItemOption.success">
|
||||
<summary>
|
||||
接口调用成功的回调函数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.buyQuantity">
|
||||
<summary>
|
||||
<b>购买数量</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.currencyType">
|
||||
<summary>
|
||||
<b>币种</b>
|
||||
可选值:
|
||||
- 'CNY': 人民币;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.goodsPrice">
|
||||
<summary>
|
||||
<b>道具单价(分)</b>
|
||||
用来校验价格与后台道具价格是否一致,避免用户在业务商城页看到的价格与实际价格不一致导致投诉
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.mode">
|
||||
<summary>
|
||||
<b>支付的类型</b>
|
||||
不同的支付类型有各自额外要传的附加参数
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.offerId">
|
||||
<summary>
|
||||
<b>在米大师侧申请的应用id</b>
|
||||
mp-支付基础配置中的offerid
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.outTradeNo">
|
||||
<summary>
|
||||
<b>业务订单号</b>
|
||||
每个订单号只能使用一次,重复使用会失败(极端情况不保证唯一,不建议业务强依赖唯一性)。
|
||||
要求32个字符内,只能是数字、大小写字母、符号 _-|*@组成,不能以下划线(_)开头。
|
||||
若没有传入,则平台会自动填充一个,并以下划线开头。
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.productId">
|
||||
<summary>
|
||||
<b>道具ID</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.attach">
|
||||
<summary>
|
||||
<b>透传数据</b>
|
||||
发货通知时会透传给开发者
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.env">
|
||||
<summary>
|
||||
<b>环境配置</b>
|
||||
可选值:
|
||||
- 0: 米大师正式环境;
|
||||
- 1: 米大师沙箱环境;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.platform">
|
||||
<summary>
|
||||
<b>平台</b>
|
||||
可选值:
|
||||
- 'android': 安卓;
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.SignData1.zoneId">
|
||||
<summary>
|
||||
<b>分区ID</b>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:WeChatWASM.RequestSubscribeMessageOption.tmplIds">
|
||||
<summary>
|
||||
需要订阅的消息模板的id的集合,一次调用最多可订阅3条消息(注意:iOS客户端7.0.6版本、Android客户端7.0.7版本之后的一次性订阅/长期订阅才支持多个模板消息,iOS客户端7.0.5版本、Android客户端7.0.6版本之前的一次订阅只支持一个模板消息)消息模板id在[微信公众平台(mp.weixin.qq.com)-功能-订阅消息]中配置。每个tmplId对应的模板标题需要不相同,否则会被过滤。
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b13c32882e7c3ffa83febc23430255a3
|
||||
guid: aafa0abf815bb0845a4166c5f523605c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using UnityEngine;
|
||||
|
||||
#if PLATFORM_WEIXINMINIGAME || PLATFORM_WEBGL || UNITY_EDITOR
|
||||
namespace WeChatWASM
|
||||
{
|
||||
public class WXRuntimeExtDef
|
||||
@ -109,11 +110,11 @@ namespace WeChatWASM
|
||||
/*
|
||||
WXRuntimeExtDef.RegisterAction("xxx", (args) =>
|
||||
{
|
||||
#if UNITY_2018
|
||||
#if UNITY_2018
|
||||
return 1;
|
||||
#else
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
#endif
|
||||
});
|
||||
*/
|
||||
WXRuntimeExtEnvDef.RegisterAction("Unity.GetObjectInstanceID", (args) =>
|
||||
@ -130,4 +131,6 @@ namespace WeChatWASM
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
@ -1,4 +1,3 @@
|
||||
#if ENABLE_WX_PERF_FEATURE
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
@ -7,8 +6,11 @@ using System.Runtime.InteropServices;
|
||||
using System.Xml;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Scripting;
|
||||
using WXPerf;
|
||||
|
||||
#if PLATFORM_WEIXINMINIGAME || PLATFORM_WEBGL || UNITY_EDITOR
|
||||
|
||||
|
||||
#if ENABLE_WX_PERF_FEATURE
|
||||
namespace WXSDKPerf
|
||||
{
|
||||
[Preserve]
|
||||
@ -22,11 +24,10 @@ namespace WXSDKPerf
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
|
||||
#else
|
||||
m_PerfEngineImplementation = new WXPerfEngine_Implementation();
|
||||
|
||||
m_PerfEngineImplementation.StartPerfEngine();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@ -34,7 +35,7 @@ namespace WXSDKPerf
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return;
|
||||
#endif
|
||||
#else
|
||||
if (m_PerfEngineImplementation == null)
|
||||
{
|
||||
UnityEngine.Debug.LogError("Annotation: Invalid m_PerfEngineImplementation! ");
|
||||
@ -42,8 +43,11 @@ namespace WXSDKPerf
|
||||
}
|
||||
|
||||
m_PerfEngineImplementation.Annotation(InAnnotationString);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // ENABLE_WX_PERF_FEATURE
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f1b393ef78dade5bc0dcfb854c8193bf
|
||||
guid: d2311874dc4a94ea00c7d43831d03676
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fc16be25ff787cc53f54a068ec8daabe
|
||||
guid: 2d716a799f51b6495fb456d51cb59627
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0178331e6887ed11647ae193640952a0
|
||||
guid: 5ddc4144c300512f51c3ea43dd831d36
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f393abf872c627cdfd427ad2265d3a0
|
||||
guid: 50a53847acbebfa2579e447d1c529038
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
],
|
||||
"plugins": {
|
||||
"UnityPlugin": {
|
||||
"version": "1.2.60",
|
||||
"version": "1.2.62",
|
||||
"provider": "wxe5a48f1ed5f544b7",
|
||||
"contexts": [
|
||||
{
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 84f16d39e7f23c70ce9d8dc6e5f68b50
|
||||
guid: 1910c1b044dc96162739add94592f3b2
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96514b224b52ab56318a55f854e19827
|
||||
guid: 86f78ad5b1c36530344ccc97f8712857
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2f633150263851abdb7c51faa25aaac8
|
||||
guid: d210ac3817b498c51e3ebcbae0368491
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 733cb30bdce9af856d2bf637d7466c3c
|
||||
guid: 342f2db47ae221709f7c68fca01b79e7
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c365a9fcd38d16de2af4fd4cb2f8dde0
|
||||
guid: bd499ac1816ee28039a6c027b5215acd
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f65ee99af401e222a02ca0ff17122e7a
|
||||
guid: a025515fa59628210d0e03d83254f82f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c83ac7fa3f62640d417e8ec258e13ff1
|
||||
guid: 19e795c8104068f7fdc77232e673dd1c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2725e0a29e6d3e24c598fc6403a89a88
|
||||
guid: f70a1d54899d7cd96793afc37e7f78ea
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ce50916551376db2101ce99db613d6e
|
||||
guid: 7bd3d752087afb941c0f7d028cfe1327
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3b3d5e9db2c13b136cc8eb596f3dfc8
|
||||
guid: 2a170222ff26c71ec64003f8c9ee961f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 035e1464a1513272f96a650214ae0239
|
||||
guid: 608ef4e3a32c4137acca9fc7c7ac393b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dcf79edb988474373db44e8dafa02b50
|
||||
guid: 723280c02d6264f5c547d45d5ff84c71
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e3093fd2bbd213ab809e9a736dd434aa
|
||||
guid: 390551be4e995cb95597db89ff2f9cc4
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b39e3dc5869068a4010a9806f482bb62
|
||||
guid: afe82214bcafce9599d6a2877f379e01
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 36854410e77a65b41818ab20902b8d94
|
||||
guid: cff337fd64c619800c5b0b9991662e2f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ccbe765469456aa907be6d7b6c3ee64
|
||||
guid: b5f8a6677527f4579e9f6209a0075d88
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1e121b5108e8062c46ed2d34c614f7da
|
||||
guid: c1a3057f727debdecf26be62c644bc0b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f144cc9a6070be647f5b30d5c88aabd
|
||||
guid: 26acbccf2236d20bdaddb9390fdfa5fd
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 64d28d751f5d4cb6add5678fe96e01f7
|
||||
guid: 4b98a2ba476fd7864812982b83eaa713
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3922b8a263c7c9cfe07031c8140d2050
|
||||
guid: 116ee15c009dfc3248ef505a39c26d0d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 38a36486cdc1fc9c55c49d57cc788fb3
|
||||
guid: 5cfc3f5d3a90666149e85e403bf6573b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: daccef2daed2f16a7183591ff3277f96
|
||||
guid: 41001577c9a78b8317f71bb80afa0dae
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2ee6a9614b6c58988836492b6166e35
|
||||
guid: a0d677cec1c1ab55310f3c382d8929c9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7e201f1c30110a775a18bc99bd3ab6c2
|
||||
guid: 5ca63e840655e846809159bd7d7df494
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b58c06efc11b27a237cf83fb5dd966fc
|
||||
guid: 47259723474bd01b14b00c5eff7133e0
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1c9577bb73996409645310d63a86c52b
|
||||
guid: 03d1c9e0dc2aed1343cec8e2007e3b73
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf73bf46b313ad1a8068ebd85107b652
|
||||
guid: 3872e7196ab19a21d90009628900b8b5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 76cab559f1d77bf8fb4d58df8b3956dd
|
||||
guid: 1cb019a080c04c2b276f3dee5cac19a9
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 445605bfb23c89b4026a9b6b80f41ce0
|
||||
guid: 85f124cf237fc09f183b910c5130527a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: af2ab291d5d840cbe9940eb32af6f7e7
|
||||
guid: e916f2a5aa0353e05aa9d8b5ae58e354
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 83edae718c7357384e86ea37b857fe3b
|
||||
guid: 66e784b8987f2e4e9c16bb421324317c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b8b94657d8bf230f0e05310cf5e7e536
|
||||
guid: bc55294fa3a745212ab5a8c73c0f6db1
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 180085702f5019fa7845de9562da0bfe
|
||||
guid: e50f2e594afb5d9f952e6446e4e87919
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4f3ed26ef74d6fce3094a4dcbce1cdba
|
||||
guid: c64ab5a32c7da79b6abca0cb3a74c580
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30912d767a5937cca42969bd669bde4b
|
||||
guid: e28c2f5c64f210c6779bd3ff5cddb145
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c56330797df45150816df5a1f8c1e2d0
|
||||
guid: b9aaf719c4fd46902355ef347eb34e0b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2d0eb895a0fe99788cca0842a500a8a5
|
||||
guid: 3db8f68d1d25292db608baef85701986
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9aae33723ea97aba8f3abe6ff7f0d62e
|
||||
guid: 56bd6a3056b1de91e1dce790ab6b223e
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3e884a2a30ce3cc097ffd54ea0446aad
|
||||
guid: d93992b807f46eb96f6fd39ae4f525af
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b3e097bc517c91a7dc69827dec5a19ff
|
||||
guid: 6e81f9c9021b7f29b625ac9a689e2f17
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 547aeca36e86bbaefb514da771cbfec5
|
||||
guid: 80ad49560552853b8f6815538a0db694
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e69eabfb3adb5c5562835d2c1208ecb2
|
||||
guid: db77ba6a64e973049c6b09fd6f44605b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01c9833f8cabe5df79fabb4aa23e06ef
|
||||
guid: 99cf201cadde50df6298f2240fa5669c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 86d1da141bb92c1140fa3a6d19ea3d42
|
||||
guid: 18fbc146cab03db7746cea37c1956c06
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a46986b52e6999923023724b0a2bcaf
|
||||
guid: 2fc47351a4b667cff7372101cf230106
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 082e3174a1e02c518718974d86179e3e
|
||||
guid: 275bda9aec0b5b21475a24231743b8c3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 077d0e43de8c0df33f27a525ec2fbf4f
|
||||
guid: 35243ad393d44d69550935a27b0b0763
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5eee8938bfe99d97838d4857b90915b8
|
||||
guid: 6ac143f47a65199573b78cbcf1f3072e
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: db72929e346c2c3e575c07f3c6f0a85b
|
||||
guid: 91c7424afffcf565251c825fda9a90f5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dbd5fa97cfcd668cc4a2821c78eaac40
|
||||
guid: 7c0d344cf8eff27463c99e4f9f1248e5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d0fda9130f23321eb969ce11da87d2b3
|
||||
guid: 5081f9f01cd0c76ea9ee6017971a5934
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 45b0cfb3076294e50993342cb43ae49f
|
||||
guid: 2d313145e3289f3b6ca178e6e2e1a4fd
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a40251d530e657c649fa324357f2627
|
||||
guid: 6f45a4dadd5417bcf9b8ffc34727b11c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2494ae984b51d0b242e2e14abb51e3b5
|
||||
guid: 2995e9422a78f9b446ad2b8d828b8b7a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9c3833db196385e83571894ec17c3f82
|
||||
guid: edee549778f6e5a605d7eac973a92901
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3de96e0535fe34f20da1eb8c54b39045
|
||||
guid: 1520bee964ccf284daf03eb301a4f55f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e14373a8ff216c502a1ff987a75f6483
|
||||
guid: 2d6169f975dae55f1bb4c9b8cc79ec76
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 34e51ad900869c5a08d9823105615ad9
|
||||
guid: a5c0ca4cddc950fbcc8c92414812f928
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ffc7478b58bf6e349cd1034fb4b1f06e
|
||||
guid: 9934e0fa6e3d96c79c00c3b0fcdde946
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b2cd9b736ee4b2344049fe1e0c1bec83
|
||||
guid: fa6bda761b657821aab7692446081728
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9d5132592a90096bb8900c20ded6a511
|
||||
guid: 5fcaafcf94da58e90d1098ef5058e680
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ee931340fdc889991127fb244ebddbb3
|
||||
guid: 7f965b1127cc849f189d2cdebb36ad4b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ac4b7f3b2e555e934247f20fd6087e8
|
||||
guid: 6c2f7d4826161aa06139738eb21f78aa
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c933a965d452dc657f8c215824f497ef
|
||||
guid: 78991e1237b76419be617382a15fbd30
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 914ace62e611d51849d0308cc77fb959
|
||||
guid: f35642cfe91b77c73a714834c5080bc6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 29b282dbdcc265350096bd854743b5d2
|
||||
guid: 3961acb27282c9633ef7406d67b88aad
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cb07939206de55711680f2f4cdcb20d2
|
||||
guid: df9d98982469cbd80997381db171f7ef
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 632d7b006ac9ff9d8be0b59ecd2333f3
|
||||
guid: c8e702b2d1e425bfb8d09624df9a3fd1
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b5d40aa306d8d5ab881f9e13eb89a840
|
||||
guid: 36dac82df33578a77e3c0d64cb32efff
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fde0341810e163affe33aae455b00e74
|
||||
guid: 12c949c5089994f07147344b5fd0302b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8acb9a885754a8f3985b995a7800f9fa
|
||||
guid: f7ca7c95447b35a1117294e3fa5ae0e3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3d912d2a766441effc1ee86254024c40
|
||||
guid: 7fb7a06ccd22688103558588e1e40fb6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c8e836ce61b863e0864e86dd99450d35
|
||||
guid: 001e1e83f4a4c8156a1615e1bf90bf9c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d5c6516c1675d27af7b8fb0adb463c4d
|
||||
guid: edf88ded22bdd00c7331462789253d27
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2843f4a676499208f79ca1e8e5a64473
|
||||
guid: 3fafd49a7fef9ea03d03408b05b22420
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 260de32224049d584b76982eea30887e
|
||||
guid: bb8ce06af6f666fecab8b9fd3018d0f8
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 85678b8d5cf4ff705460a1dcb97bc1bb
|
||||
guid: e62183b1c99bda7b3dd099998bcf3c81
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user