Auto-publish.

This commit is contained in:
nebulaliu 2025-09-12 11:02:02 +08:00
parent 163705a86f
commit bac0451c27
170 changed files with 219 additions and 174 deletions

View File

@ -221,6 +221,9 @@ namespace WeChatWASM
{ {
var rootPath = Directory.GetParent(Application.dataPath).FullName; var rootPath = Directory.GetParent(Application.dataPath).FullName;
string webglDir = WXExtEnvDef.GETDEF("WEIXINMINIGAME") ? "WeixinMiniGame" : "WebGL"; string webglDir = WXExtEnvDef.GETDEF("WEIXINMINIGAME") ? "WeixinMiniGame" : "WebGL";
#if PLATFORM_PLAYABLEADS
webglDir = "PlayableAds";
#endif
symFile1 = Path.Combine(rootPath, "Library", "Bee", "artifacts", webglDir, "build", "debug_WebGL_wasm", "build.js.symbols"); symFile1 = Path.Combine(rootPath, "Library", "Bee", "artifacts", webglDir, "build", "debug_WebGL_wasm", "build.js.symbols");
} }
WeChatWASM.UnityUtil.preprocessSymbols(symFile1, GetWebGLSymbolPath()); WeChatWASM.UnityUtil.preprocessSymbols(symFile1, GetWebGLSymbolPath());
@ -346,7 +349,9 @@ namespace WeChatWASM
{ {
// WxPerfJsBridge.jslib // WxPerfJsBridge.jslib
var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter; var wxPerfJSBridgeImporter = AssetImporter.GetAtPath(wxPerfPlugins[0]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.PlayableAds, config.CompileOptions.enablePerfAnalysis);
#elif PLATFORM_WEIXINMINIGAME
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, config.CompileOptions.enablePerfAnalysis); wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, config.CompileOptions.enablePerfAnalysis);
#else #else
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enablePerfAnalysis); wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enablePerfAnalysis);
@ -359,7 +364,10 @@ namespace WeChatWASM
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_PLAYABLEADS
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.PlayableAds, bShouldEnablePerf2022Plugin);
#elif PLATFORM_WEIXINMINIGAME
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2022Plugin); wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2022Plugin);
#else #else
wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2022Plugin); wxPerf2022Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2022Plugin);
@ -372,7 +380,9 @@ namespace WeChatWASM
bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202102To202203(); bool bShouldEnablePerf2021Plugin = config.CompileOptions.enablePerfAnalysis && IsCompatibleWithUnity202102To202203();
var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter; var wxPerf2021Importer = AssetImporter.GetAtPath(wxPerfPlugins[2]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.PlayableAds, bShouldEnablePerf2021Plugin);
#elif PLATFORM_WEIXINMINIGAME
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2021Plugin); wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, bShouldEnablePerf2021Plugin);
#else #else
wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2021Plugin); wxPerf2021Importer.SetCompatibleWithPlatform(BuildTarget.WebGL, bShouldEnablePerf2021Plugin);
@ -572,7 +582,9 @@ namespace WeChatWASM
Debug.LogError("Lua Adaptor Importer Not Found: " + maybeBuildFile); Debug.LogError("Lua Adaptor Importer Not Found: " + maybeBuildFile);
continue; continue;
} }
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.PlayableAds, shouldBuild);
#elif PLATFORM_WEIXINMINIGAME
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, shouldBuild); wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, shouldBuild);
#else #else
wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, shouldBuild); wxPerfJSBridgeImporter.SetCompatibleWithPlatform(BuildTarget.WebGL, shouldBuild);
@ -622,7 +634,12 @@ namespace WeChatWASM
else else
{ {
#if TUANJIE_2022_3_OR_NEWER #if TUANJIE_2022_3_OR_NEWER
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.WeixinMiniGame, BuildTarget.WeixinMiniGame); if(EditorUserBuildSettings.activeBuildTarget != BuildTarget.WeixinMiniGame
#if PLATFORM_PLAYABLEADS
&& EditorUserBuildSettings.activeBuildTarget != BuildTarget.PlayableAds
#endif
)
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.WeixinMiniGame, BuildTarget.WeixinMiniGame);
#endif #endif
} }
Emit(LifeCycle.afterSwitchActiveBuildTarget); Emit(LifeCycle.afterSwitchActiveBuildTarget);
@ -1095,7 +1112,11 @@ namespace WeChatWASM
} }
#endif #endif
#if TUANJIE_2022_3_OR_NEWER #if TUANJIE_2022_3_OR_NEWER
if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.WeixinMiniGame) if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.WeixinMiniGame
#if PLATFORM_PLAYABLEADS
&& EditorUserBuildSettings.activeBuildTarget != BuildTarget.PlayableAds
#endif
)
{ {
UnityEngine.Debug.LogFormat("[Builder] Current target is: {0}, switching to: {1}", EditorUserBuildSettings.activeBuildTarget, BuildTarget.WeixinMiniGame); UnityEngine.Debug.LogFormat("[Builder] Current target is: {0}, switching to: {1}", EditorUserBuildSettings.activeBuildTarget, BuildTarget.WeixinMiniGame);
if (!EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.WeixinMiniGame, BuildTarget.WeixinMiniGame)) if (!EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.WeixinMiniGame, BuildTarget.WeixinMiniGame))
@ -1106,8 +1127,11 @@ namespace WeChatWASM
} }
var projDir = Path.Combine(config.ProjectConf.DST, webglDir); var projDir = Path.Combine(config.ProjectConf.DST, webglDir);
#if PLATFORM_PLAYABLEADS
var result = BuildPipeline.BuildPlayer(GetScenePaths(), projDir, BuildTarget.PlayableAds, option);
#else
var result = BuildPipeline.BuildPlayer(GetScenePaths(), projDir, BuildTarget.WeixinMiniGame, option); var result = BuildPipeline.BuildPlayer(GetScenePaths(), projDir, BuildTarget.WeixinMiniGame, option);
#endif
if (result.summary.result != UnityEditor.Build.Reporting.BuildResult.Succeeded) if (result.summary.result != UnityEditor.Build.Reporting.BuildResult.Succeeded)
{ {
UnityEngine.Debug.LogFormat("[Builder] BuildPlayer failed. emscriptenArgs:{0}", PlayerSettings.WeixinMiniGame.emscriptenArgs); UnityEngine.Debug.LogFormat("[Builder] BuildPlayer failed. emscriptenArgs:{0}", PlayerSettings.WeixinMiniGame.emscriptenArgs);
@ -2246,7 +2270,9 @@ namespace WeChatWASM
{ {
var importer = AssetImporter.GetAtPath(jsLibs[i]) as PluginImporter; var importer = AssetImporter.GetAtPath(jsLibs[i]) as PluginImporter;
bool value = i == index; bool value = i == index;
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
importer.SetCompatibleWithPlatform(BuildTarget.PlayableAds, value);
#elif PLATFORM_WEIXINMINIGAME
importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, value); importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, value);
#else #else
importer.SetCompatibleWithPlatform(BuildTarget.WebGL, value); importer.SetCompatibleWithPlatform(BuildTarget.WebGL, value);

View File

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

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 49930f76844c8f7a19b5e8cb5b4c8591 guid: 22a1fe6901393580534956966db033e9
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -10,7 +10,9 @@ internal class DisableKeyboardInput : MonoBehaviour
private static void OnGameLaunch() private static void OnGameLaunch()
{ {
#if !UNITY_EDITOR #if !UNITY_EDITOR
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
PlayableAdsInput.mobileKeyboardSupport = false;
#elif PLATFORM_WEIXINMINIGAME
WeixinMiniGameInput.mobileKeyboardSupport = false; WeixinMiniGameInput.mobileKeyboardSupport = false;
#elif PLATFORM_WEBGL #elif PLATFORM_WEBGL
#if UNITY_2022_1_OR_NEWER #if UNITY_2022_1_OR_NEWER

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 5f3ade61ed50bc94194bbfa2f28653b0 guid: 80de6d644e4a5245e1a258176861e21a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0c5dc05158008e1d6817c62b8b8a9f23 guid: 482825ecf2e705896c017bf2a1c91e06
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -149,7 +149,9 @@ public class WXTouchInputOverride : BaseInput
Text text = selectedObject.GetComponent<Text>(); Text text = selectedObject.GetComponent<Text>();
if (text != null) if (text != null)
{ {
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
PlayableAdsInput.mobileKeyboardSupport = true;
#elif PLATFORM_WEIXINMINIGAME
WeixinMiniGameInput.mobileKeyboardSupport = true; WeixinMiniGameInput.mobileKeyboardSupport = true;
#elif PLATFORM_WEBGL #elif PLATFORM_WEBGL
#if UNITY_2022_1_OR_NEWER #if UNITY_2022_1_OR_NEWER
@ -159,7 +161,9 @@ public class WXTouchInputOverride : BaseInput
} }
else else
{ {
#if PLATFORM_WEIXINMINIGAME #if PLATFORM_PLAYABLEADS
PlayableAdsInput.mobileKeyboardSupport = false;
#elif PLATFORM_WEIXINMINIGAME
WeixinMiniGameInput.mobileKeyboardSupport = false; WeixinMiniGameInput.mobileKeyboardSupport = false;
#elif PLATFORM_WEBGL #elif PLATFORM_WEBGL
#if UNITY_2022_1_OR_NEWER #if UNITY_2022_1_OR_NEWER

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: cfce71a463a11d45121ea4d03578fd57 guid: 481daf5519fef4bbc15fc67d2c523d61
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: cf34065fa31ce5c484d291cc8dd320e4 guid: f7bd11f3e07adc753ac6e515133b77b2
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1eff9ceedc2a12f5086a7c33c1bbe1ea guid: b871035f13853d2f03ca856dfa1d5ce2
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 01df0a78eb0e06c88f59e82be857b099 guid: fa1756507aa28d76421be373f1f82d0c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 66776d3d61fa21f10e0cb0f27cd37b11 guid: d38d7ecde29ef56c6a5bc762e87fd9aa
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e18581d85e3cee1b68c182c31677c516 guid: a64622c1eb2cc1f0216b942fbef2a3d7
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: da576821e32a00ba9191671105d34367 guid: 086ac9be7e96a280aa5146be918dbf3b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 382a014bb6436509d5fbbef8eae1b101 guid: fb2d424ea7889d438ccf95345b782642
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6814ea36c47fac91f52cbe5b814bf695 guid: 53f25268d9d7f7d16a39e26e024bfd4e
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: bee1b544d412a9ede416f010136faa9b guid: 77d214988c749fd042039a2fbb705a8c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b307121fdeb8a77fefdd591852c14ce5 guid: 1acd229307b53368e7d66aaa4ce83432
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 341fd657c28d1556dce923bc8126e452 guid: b4141f19536adbad25885a030b113cf0
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f49a682d798b7a1196798db48946a8b0 guid: 915abdf944a5f5bb8062f9a62759cf39
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ca50f3d8e414f9adac864cbb2da39101 guid: f27595c509a45766488d0a7d2af34616
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1815905ca78ce25f81f7468fc7987a37 guid: 8d529ddf86a1a7e7d169a77ed6caa279
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 468e0fe2d6b6fef23583f41978c539df guid: be7aa7575ef15683e9475c61db4b9292
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7d9a286d77f576c38a1b7d1fdb9676f6 guid: 1a193d5a1df6c7f770b092cb26af1f4e
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d105fe34eab5a4cd37f8c73cac0ac9c1 guid: a572b31ec387aeadfe7b39897a232030
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ba5ef2921bd6cdecd5239727703d15e9 guid: 16316a622bd65b94f3ab3e0891a47538
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c3c9e2a24b3b43e72d95ba7d9f40affe guid: 911d78f210ea60a684446cde92af41c4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2101869460814395b507254146d512aa guid: 8714f4fe6b88bf88bc97f651bc5b2d53
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ed96b9781e2635a1abfbfef365576d9f guid: f23f24910bd25cce131e2ce03848a38d
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b83760eaf5ba7094dffa18cc309c041d guid: 49e351accc2c19eb53fa306030af3f3a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 06a87e50bb214548f49edefbe363512e guid: a4a6ca540334c9ad0528ffce15c449ec
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 124a49ffdcdde235d16fdaac5c661e3a guid: ebb3bf0873d59a83912099ea30007778
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0539375c4fd2817bbfa446a37f5d0818 guid: 746a3847f746441c24f0cf6d1cbb4be5
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: aa91a582c413484cc5879111fb388968 guid: 4692e983c907a75bd349aeb328561a7b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c52bd127edc24b86b795a8b796a66f58 guid: a6a1323831c3d6a00db0565009c1f5d4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ff122c49ecf036fbba46beebda1d40ad guid: 5cb1a5fbcf97b9dadf46592dceb13c15
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2a23a8462bd43e409ce209689baba868 guid: 292c1e0c4a1af4b83be6cf91b0d78ccb
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 11bc8f9d61036c3a14c5403a1513c48e guid: a5acf57dcb2f66d0384e0f27245ceb53
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b1250e4c1ab49a6d85a56cca344c60ba guid: ca1c797f94456623846d86173ae5431f
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3215474e958e711a94d6dfde9e57ec3e guid: 048527751e950d320250e4af4a8da55c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7e24b2b472834b2b670a93868cd8a863 guid: 74a2fd92d63799e6a24d5fa4e24cdd63
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6088b63f6ca67263a628e06f94feb7c0 guid: 14fa85689a43840413dc3ace24032353
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f18b254479d621ea9fdd3e6ec67a015a guid: 791014ef57504e088fe374befb600603
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7419e6191be79e1815f1e1b50ce2a0d2 guid: 7e69b6280d26b70ac6e2f56a2446343f
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 88a3b5556849a92b54362c3169c49a65 guid: 189038f598e6826a1f2af8c671761e27
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f2c843855ea8bf6faab0f739cccc8125 guid: bb5e21ce7f1062b6f6ba8142f1313340
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7010c7fb3b0aba9cb6c24ca73190df30 guid: 3e909c6a76417f68bcbfafc357b6091d
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 85549c95cae0a39d3a4b3e1e65383cbe guid: 3aca435f756dac6a0b78d764d7d8cbea
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: a65fdbc26ec7d3930a637d94ba83f3ea guid: 6552c660e926eb5c718b30d51653b082
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: ae2db0bd20bd23b714b9620f0745e2b4 guid: 6491c4c073fa6e9eae47a5ea2c25e3e8
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d386b60c682135e7662ece0aa3310b36 guid: 02d3024187b7bd6afe83c9eb9ddb4ae2
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9d30dc5f5967d1655639d8d671acf163 guid: 81437fee01a1a0e9e63dd1c1370529e1
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: e51d77a88b580eccf0a725440c69526f guid: 49ba11f365aaa161ba27772553851613
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d1fa084d73dfa38df9c3856b77e3bcc1 guid: 07906fbe2cc79d78d794b76a810f479b
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1f1413ce9f0f139d9472596cf1fe29e9 guid: df5e2432327d942f5dd61214f0ea8d51
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c4a42dcd38be481a7e0a66f1c7ae46c0 guid: 1e941547d0cd6959a6cdf2b79ae4ebf5
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2523761e12dce49e61be068a57e03606 guid: 9b9cfd06a15cb6dd36689792ea903d08
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 858db00e5a3382679bff8283d3df5490 guid: d317380897597b17d75de180f8324464
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 75bf55760bd721c3eefeafa4719ab7da guid: 6cab7838c6665974b81b1361e965eb2e
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 40ea7a968705fea402f1ab047c77662f guid: b1c10f24654942c98a519e4f2bd2738a
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 41b0b19cff5bd37d366226d83b7c86ad guid: d65683ce63ea0501cbe9f1951f045330
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 285bb1fe87a94f44624164f9892b2f5d guid: c31d37336c34e951ac751084870563cc
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b182425872212615f7ed1f9d80ed9c2a guid: 6773dbc65d4a72d18b4b00f28b5e5ff2
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7ab75c996bc0c71ab0e606e6d3c3a5d4 guid: 5953b352a51a1883ab254436b501dadc
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 877f051b0ca6b9f76d57c7cc9f4ea4cf guid: bf6199e6454b23c2885311928b6000f4
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 76c5616a0b6f93bbca9659bad5623d86 guid: a60155fd8ab0e3fba7c40766c5c61eab
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2d8db033251deed0623723e45ad47f30 guid: b7d819b4814b7522a91a6965556350d6
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 241e98a505df0487e1522ad9e7e6295b guid: 89f07f985472a42e2cf6b69a64f1621d
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d4e7a253e6db7f57d38ad9d2987f5996 guid: af648208440024f4d308333182dd4d04
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: da9aced6c68bcb238b4b643aba3733fa guid: 214a2109639a932da8b0a10309a44b7c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 55095fd1301f202b510227d343cf1b95 guid: 0b200296d8cbdf34ac78e9429e486827
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 446eb79c2964f0516d1be14c4d354563 guid: be5d7e96a2797069820e3369c0dd2489
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 16e1624392a8d5f76473dbb0ce8d1dfa guid: fdf6a148c3546b60da2bc353392eb594
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f0e93255e6f2fcdd8df142e71a8cbdad guid: 69f97b054e311e0aedc69324aaf6af44
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

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

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f551f5b9da848c0e2357eeb62b59d4ac guid: 213c4d25582c4f7505e6a2d16cbf8f75
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b9b738c9f9ab5004383bf46d1786c7f3 guid: b18fb1890f606d56cf8f6c53aea69c44
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c0bf9683f08592360b495fdb55d7fd47 guid: cc592dd18b4e922f6fdfea1d8ed81827
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1350799920b49c8c95c7dbdf07db6eb8 guid: 4971b01f863787a5faa0f8b78b1dc1f8
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 1d49702839142681f93c2f319cb553ea guid: 5691188d658118261c7228a013418ad9
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 425d212f6ac97a9b0181340c60420612 guid: 94513452e8785f6d2f717be367178a63
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 280454fc386eca55d7ea5fcda810c802 guid: d24784e21dbd232666a6673a6ca71bfd
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: dc7c8d690e1512285d3f89daa1527b57 guid: af2ff6a31554105ce2f9ed40d655427c
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: fbffa5cb8a47cdb9f39b9e154578f10e guid: dfa8868af5a619371c8cab27b2648d46
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 72ccd6ad09b1fb810f64970f0582783b guid: 866c97ab2dff223dac672f6634d98400
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

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