Auto-publish.

This commit is contained in:
rainhong 2024-09-23 17:49:10 +08:00
parent 13524bd4a5
commit b22ef35bdb
93 changed files with 132 additions and 152 deletions

View File

@ -2,7 +2,6 @@ using UnityEditor;
using System;
using System.Reflection;
using System.IO;
/*
public class WXAssetPostprocessor : AssetPostprocessor
{
private static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
@ -178,4 +177,3 @@ public class WXAssetPostprocessor : AssetPostprocessor
return enabledStrIdx + 9;
}
}
*/

View File

@ -241,41 +241,8 @@ namespace WeChatWASM
$"{jsLibRootDir}wx_perf_2021.a",
};
}
{
// WxPerfJsBridge.jslib
var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, config.CompileOptions.enablePerfAnalysis);
#else
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enablePerfAnalysis);
#endif
}
{
// wx_perf_2022.a
bool bShouldEnablePerf2022Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202203OrNewer();
var wxPerf2022Importer = AssetImporter.GetAtPath(wxPerfPlugins[1]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2022Plugin);
#else
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2022Plugin);
#endif
}
{
// wx_perf_2021.a
bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202103To202203();
var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2021Plugin);
#else
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2021Plugin);
#endif
}
WXAssetPostprocessor.EnableWXPostProcess = config.CompileOptions.enablePerfAnalysis;
for (int i = 0; i < wxPerfPlugins.Length; i++)
{
var importer = AssetImporter.GetAtPath(wxPerfPlugins[i]) as PluginImporter;
@ -285,27 +252,6 @@ namespace WeChatWASM
}
}
private static bool IsCompatibleWithUnity202203OrNewer()
{
#if UNITY_2022_3_OR_NEWER
return true;
#endif
return false;
}
static bool IsCompatibleWithUnity202103To202203()
{
#if UNITY_2022_3_OR_NEWER
return false;
#endif
#if !UNITY_2021_3_OR_NEWER
return false;
#endif
return true;
}
private static void CheckBuildTarget()
{
Emit(LifeCycle.beforeSwitchActiveBuildTarget);

View File

@ -18,6 +18,8 @@ namespace WeChatWASM
public class WXSettingsHelper
{
public static string projectRootPath;
public WXSettingsHelper()
{
Type weixinMiniGamePackageHelpersType = Type.GetType("UnityEditor.WeixinPackageHelpers,UnityEditor");
@ -50,11 +52,17 @@ namespace WeChatWASM
//loadData();
foldInstantGame = WXConvertCore.IsInstantGameAutoStreaming();
projectRootPath = System.IO.Path.GetFullPath(Application.dataPath + "/../");
_dstCache = config.ProjectConf.DST;
}
//private static WXEditorScriptObject config = UnityUtil.GetEditorConf();
private static bool m_EnablePerfTool = false;
private static string _dstCache;
public void OnFocus()
{
loadData();
@ -101,13 +109,13 @@ namespace WeChatWASM
formInputData[targetDst] = "";
}
EditorGUILayout.LabelField(string.Empty, GUILayout.Width(10));
GUILayout.Label("导出路径", GUILayout.Width(140));
GUILayout.Label(new GUIContent("导出路径(?)", "支持输入相对路径wxbuild"), GUILayout.Width(140));
formInputData[targetDst] = GUILayout.TextField(formInputData[targetDst], GUILayout.MaxWidth(EditorGUIUtility.currentViewWidth - 270));
if (GUILayout.Button(new GUIContent("打开"), GUILayout.Width(40)))
{
if (!formInputData[targetDst].Trim().Equals(string.Empty))
{
EditorUtility.RevealInFinder(formInputData[targetDst]);
EditorUtility.RevealInFinder(GetAbsolutePath(formInputData[targetDst]));
}
GUIUtility.ExitGUI();
}
@ -422,7 +430,7 @@ namespace WeChatWASM
this.setData("compressDataPackage", config.ProjectConf.compressDataPackage);
this.setData("videoUrl", config.ProjectConf.VideoUrl);
this.setData("orientation", (int)config.ProjectConf.Orientation);
this.setData("dst", config.ProjectConf.DST);
this.setData("dst", _dstCache);
this.setData("bundleHashLength", config.ProjectConf.bundleHashLength.ToString());
this.setData("bundlePathIdentifier", config.ProjectConf.bundlePathIdentifier);
this.setData("bundleExcludeExtensions", config.ProjectConf.bundleExcludeExtensions);
@ -495,7 +503,8 @@ namespace WeChatWASM
config.ProjectConf.compressDataPackage = this.getDataCheckbox("compressDataPackage");
config.ProjectConf.VideoUrl = this.getDataInput("videoUrl");
config.ProjectConf.Orientation = (WXScreenOritation)this.getDataPop("orientation");
config.ProjectConf.DST = this.getDataInput("dst");
_dstCache = this.getDataInput("dst");
config.ProjectConf.DST = GetAbsolutePath(_dstCache);
config.ProjectConf.bundleHashLength = int.Parse(this.getDataInput("bundleHashLength"));
config.ProjectConf.bundlePathIdentifier = this.getDataInput("bundlePathIdentifier");
config.ProjectConf.bundleExcludeExtensions = this.getDataInput("bundleExcludeExtensions");
@ -727,7 +736,38 @@ namespace WeChatWASM
}
}
}
public static bool IsAbsolutePath(string path)
{
// 检查是否为空或空白
if (string.IsNullOrWhiteSpace(path))
{
return false;
}
// 在 Windows 上,检查驱动器字母或网络路径
if (Application.platform == RuntimePlatform.WindowsEditor && Path.IsPathRooted(path))
{
return true;
}
// 在 Unix/Linux 和 macOS 上,检查是否以 '/' 开头
if (Application.platform == RuntimePlatform.OSXEditor && path.StartsWith("/"))
{
return true;
}
return false; // 否则为相对路径
}
public static string GetAbsolutePath(string path)
{
if (IsAbsolutePath(path))
{
return path;
}
return Path.Combine(projectRootPath, path);
}
}
}

View File

@ -2,7 +2,7 @@
{
public class WXPluginVersion
{
public static string pluginVersion = "202409230925"; // 这一行不要改他,导出的时候会自动替换
public static string pluginVersion = "202409230948"; // 这一行不要改他,导出的时候会自动替换
}
public class WXPluginConf

Binary file not shown.

View File

@ -30,7 +30,7 @@ mergeInto(LibraryManager.library, {
GameGlobal.memprofiler = emscriptenMemoryProfiler
GameGlobal.memprofiler.onDump = function () {
var fs = wx.getFileSystemManager();
var allocation_used = GameGlobal.memprofiler.allocationsAtLoc;
var allocation_used=GameGlobal.memprofiler.allocationsAtLoc;
if (typeof allocation_used === "undefined") allocation_used=GameGlobal.memprofiler.allocationSiteStatistics;
var calls = [];
for (var i in allocation_used) {

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 052d74c193411b20b48e44efa9e27cca
guid: b3a1c8ab80dc05177f39a1a2d4d81fb6
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5c156acafe164fd743f241fe043d1f9d
guid: 3437c4eddd208ed2ac7e8b9cd4a5196a
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5e08eca8973744a19a0f5052fda3e6e4
guid: 12ccc0aaedf31c8b11484d68e49aae8d
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 488fa84945f0f36faa8da11256b5b6ce
guid: 148d8989785f1786a1367cfcc2513924
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 851bc39141301341b35c6d5493222b82
guid: 9432360e2f6fb4885778cee514130dea
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f731476658e89a610657bc6cc1a30c41
guid: e588c7daba4ba610f3f6365b2e539c76
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 628a8b931a68bb8ec7a24aff29fbb373
guid: c3ac3dc7d2e01f0c00b547df4d1dbfaa
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 6db6b8ec630c090908345f8890a3dbc0
guid: ed52b4681658b8970489562cc82fa25a
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 2cd18d01d085ec7367f374156b894659
guid: 8009fc113e00b6be398df3888f85e6c0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e9926c9cd08e6b7bb83ed6445f2f6db6
guid: 592117d4fa75def72a1797c4224017cd
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 923f8fb4fee4190f62df549444b13555
guid: 5f185e95abbf04d77de459895cbb7139
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1dcb08d99c8a9de7543a308bfa3be530
guid: bc2a1213f1cfa40fdbe41ff54104b814
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a950d569b5d151b3ba7a8c1d4af1373b
guid: 93a2f0588fc96770ab4e6f436bd40490
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c6a6493743ac0384b812558ebf8cfcf8
guid: 41028de175f4c11e1ca097e0f4f358b2
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 18177909767f8d7ad46b6389d66eaace
guid: 7f7dd3bca2196b8e6ed19adfc772f49e
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e52c970737ab480a5d5ff5878052ce55
guid: da2fe38f5f557f9a21047e1acb18035d
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 9162670baa27661493565e671617a0f1
guid: c1ce08f6cea8766c658d15a2c9a1d4ef
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 663b85396405717a64cab778272fe95c
guid: d8f1a32c56b092f9a8b847d625ef6846
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 71a5ee5d7e619bccf6f68ee4b38cc946
guid: ce00785976f024b7aea19c58fa0c1911
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 0a1d837f45de2f20676a458305859cef
guid: 356d5f4b28ed5656b17570da94f492a0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 0113265091019d4ea008ed88790aa7cf
guid: 7d54537866c278dce3ea72367679d7a9
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c0444af3b44ab3371705a22f62e02bb3
guid: 727435982811dd8b80ab93cef91e035f
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 4f4d7a7a7147fd67324f045300343348
guid: 248c01a49872cff4a8999186cb964cec
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 53b44f95366e4dd50269ba97e65ac86d
guid: 5b05510c2a8bb9a1ac6a40a315cbb7ea
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 58a2f4b078fb830039e72171f7f7db81
guid: 337cade70ea552f22c3026b23ff8b27e
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 11681e61f2f3c42f407114292079fb0e
guid: b55342b470b698430eecc107852cab65
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 61aa11c3410547c861b173b2d84c58ca
guid: 6369f0e1741aaab111e44ddf2d74af12
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 19c291a96908308e8efef2b2a438f186
guid: 513a2a8b7c16ce7a5a3e277c4c135b84
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 574568abc41e8439d60b252999d4d1c1
guid: 8e82d9209e04feb9b9d4507358d714e1
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 6d7b9de0a0fbcc38eb449ff338982d03
guid: 58e72d87e61ca3668b7c100cadd60358
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a611a9f7048fa3b7e49bafce58456fe9
guid: ad38878ac13aa290ef3660e51970e7b7
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 66a6d4a576bea39f93f9228497bf7146
guid: 83fc6864f11d8bbca9b25de467eda746
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ba4c5683cff3368081d0b3878834a48c
guid: 5ce400cbb0422a7b4c4dd24a0d64f29f
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: daa935a50158009ad736fbd7ad5b9ed5
guid: 83ac06f1ec7380fdc023631885214332
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e77ff13bc428f05272c642cadb2dd45a
guid: 2e6d6b07c19ec08bd900b963dde85030
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c20d3b40330820bad4dd52506bac9054
guid: 670aa0626ad3b4939441d8d9f61dc517
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f5aa3c61c281f40a97f1f637b68ad536
guid: 9039748faa06bf6f1eb4bf34e0d9b0aa
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1279da34a924c7f1569f92038fff7404
guid: 40bace5c8c74fb98e30b5f3494ed70b7
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5bc89e9c5153d4da346f46a7af90c481
guid: 42f752ef908f92931ed1707c1b09f7b2
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ae8ba2153378fa6738b45a93732883ba
guid: bdf783ad9f481d4aff4d68b73ebbfc12
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 87e189976c75086e7b2c84b5c5c4224c
guid: 126ef41f56a3c6d9b75f4f50f6b7a0c0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8cafe0f887ab0401eb0b7ac9daddfd82
guid: 1341bbe200b5be1bf85989042ed7c849
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f4508bb316442ca690da70e4a7996274
guid: b45378f79e9e690b55e29a93a059c870
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 47dfbbf9436ea1cdc498bfd9b002e1c2
guid: 414b4b59e6324b74f6db06e9fc1369dc
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8118e75800aced5c47c9e5b64ecea62e
guid: 949488ea6476f74a5cd40632f0e3187e
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 7412a94ed5e4ef0cda932b7a74441530
guid: ff85b4ce81827071fc272d11d25d5331
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: fa6e99b197aa1c8fe6991a48d93f518d
guid: f639d489d5dd17c477f7c395ab3e8cfa
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d8d3ee11b7e40ef6d47fb0fa3445199e
guid: b5b487d49511d2756aed454cbef14e5f
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 04b097346727a0fa862d9119f1e2102b
guid: c2861ce4bdd0e0bb8136c89c32b1bc0c
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 4dd3560fa2b4d4a62487303cd2b5ef72
guid: 0de1b30e8432f8e666724f9767b6f110
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ea04d9a910ac7b92f00c583287020234
guid: 81c47f21193e549959b1ae9f88e188c0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f8fd13a7d5a40e5ce1c41c4919fe32a7
guid: 21120f291321a2a707ed6dab2845a83c
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: df4cf7e9a5de5e4a6dc8ce6cc3a2596d
guid: 9620a8931ef027e2efe20b0ac49e58c8
DefaultImporter:
externalObjects: {}
userData:

View File

@ -25,10 +25,6 @@ export default {
config.type = typeEnum[config.type];
// @ts-ignore
config.icon = iconEnum[config.icon];
if (!config.text) {
config.text = '';
}
const id = uid();
gameClubButtonList[id] = wx.createGameClubButton(config);
return id;

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 59ccd74111d1c312896f6505d2ba531f
guid: 9b6125de19adc9180a0f51112050cc13
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 12b610f957ca6490797ed7d5f1ac0d16
guid: 934a6a0815f77b3d659a0f361acf28ef
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b1e8729aa39dd3b9dc42da82712efe20
guid: 45e87d376ee7805ba23d3ca2ffad2b02
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a9eca365a0455cc1f0bd8f4636ba5860
guid: 60eeefe7ac547160661a0406cb5484f4
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: dc56004da227ae57c8820c573c3c447b
guid: 48a1ba36a29259362fb2492a9e50ef3f
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 390bd1bc5e7a10317ebb7b307565638b
guid: 9c7b54b07b052e4df8b0a78f9423a6da
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1640c42e8036121118b0ccd25990ddf9
guid: cc0df6cecf07d0b43fe2242daca83223
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 4cb321df422680420a453ffd01a1cd66
guid: 64d074698336af6f617332f08dbbbb25
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 42ac864dfc70de34cff8ec4d11b6744c
guid: 43650789bdc1ed40956f66bc3ba5b229
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 70c531675c2b1596841237bed94ae139
guid: 458c468fb130a2b0bd84e647310a3826
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 846c9de76c5c613971de3ed682a3344f
guid: 75abb05fe9f1e9bbd61c6024cf09d017
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: fd95d1bfb5c1aa1ed789716a93ebf348
guid: 57f9b8e73b2f47c481ccc909bc691dff
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c0968d0a5b11ae1c7eeafe330e2d78b6
guid: e3118d226c5be93c6ce2bdf82ab2e3ca
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 75f0922fcb29516a659765a92930b783
guid: 0ef2cf5d109ace07c6d751939cef3bdd
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 65ed0a19246d3bc4c9f850d0ce320284
guid: f43577ae8fb104ff3121ebb581beb4bb
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 64127efa0cbcf4a97600b17b03d71aac
guid: 529565964381c0ae605a2ba883bb7439
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 739d5ca3708a1b227a8bdeb9b0701ea1
guid: 93ecd2fe0c190b35b75ea5987bd48dc6
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c8cdaa6e762c45ecbd41a1a691423b0d
guid: 00033848f6a8029208233980152caf39
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: aa1bb362b959479988d167f168966c1f
guid: a3723e3a063b2cde726e7d4808a7d0a4
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1ebbab328893cc5a1a296587f9ef4b56
guid: 266c7462317cc659bd69d0881299ea74
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: eaffe1b454309093f233fe92c2c73a50
guid: 43c286d10a785d722bb32cd7a0b6c062
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 16ac14ac5dc353838e7fb70ce5a35e6c
guid: 6f1ae7acb10388f0db7cee8b85563f85
DefaultImporter:
externalObjects: {}
userData: