Auto-publish.

This commit is contained in:
nebulaliu 2025-07-25 10:50:20 +08:00
parent ee56f23a42
commit c947eca578
176 changed files with 302 additions and 169 deletions

View File

@ -107,6 +107,14 @@ namespace WeChatWASM
return config.CompileOptions.enableiOSMetal;
}
}
// 用于replaceRules判断是否需要注入相关的修改
public static bool UseEmscriptenGLX
{
get
{
return config.CompileOptions.enableEmscriptenGLX;
}
}
// public static void SetPlayableEnabled(bool enabled)
// {
// isPlayableBuild = enabled;
@ -126,6 +134,8 @@ namespace WeChatWASM
}
// iOS metal 的相关特性
ProcessWxiOSMetalBinaries();
// emscriptenglx的相关特性
ProcessWxEmscriptenGLXBinaries();
MakeEnvForLuaAdaptor();
// JSLib
SettingWXTextureMinJSLib();
@ -371,6 +381,39 @@ namespace WeChatWASM
AssetDatabase.Refresh();
}
private static void ProcessWxEmscriptenGLXBinaries()
{
string[] glLibs;
string DS = WXAssetsTextTools.DS;
if (UnityUtil.GetSDKMode() == UnityUtil.SDKMode.Package)
{
glLibs = new string[]
{
$"Packages{DS}com.qq.weixin.minigame{DS}Runtime{DS}Plugins{DS}libemscriptenglx.a",
};
}
else
{
string glLibRootDir = $"Assets{DS}WX-WASM-SDK-V2{DS}Runtime{DS}Plugins{DS}";
glLibs = new string[]
{
$"{glLibRootDir}libemscriptenglx.a",
};
}
for (int i = 0; i < glLibs.Length; i++)
{
var importer = AssetImporter.GetAtPath(glLibs[i]) as PluginImporter;
#if PLATFORM_WEIXINMINIGAME
importer.SetCompatibleWithPlatform(BuildTarget.WeixinMiniGame, config.CompileOptions.enableEmscriptenGLX);
#else
importer.SetCompatibleWithPlatform(BuildTarget.WebGL, config.CompileOptions.enableEmscriptenGLX);
#endif
importer.SaveAndReimport();
// SetPluginCompatibilityByModifyingMetadataFile(glLibs[i], config.CompileOptions.enableEmscriptenGLX);
}
// AssetDatabase.Refresh();
}
/**
* Lua Adaptor Settings.
*/
@ -1518,7 +1561,7 @@ namespace WeChatWASM
var shortFilename = filename.Substring(filename.IndexOf('.') + 1);
// 如果code没有发生过变化且压缩方式不变则不再进行br压缩
if (File.Exists(cachePath) && lastBrotliType == config.CompileOptions.brotliMT)
if (cachePath.Contains("wasm.code") && File.Exists(cachePath) && lastBrotliType == config.CompileOptions.brotliMT)
{
File.Copy(cachePath, targetPath, true);
return 0;
@ -1966,7 +2009,7 @@ namespace WeChatWASM
config.ProjectConf.bundleHashLength.ToString(),
bundlePathIdentifierStr,
excludeFileExtensionsStr,
config.CompileOptions.enableiOSMetal ? "5" : (config.CompileOptions.Webgl2 ? "2" : "1"),
config.CompileOptions.Webgl2 ? "2" : "1",
Application.unityVersion,
WXExtEnvDef.pluginVersion,
config.ProjectConf.dataFileSubPrefix,
@ -2015,7 +2058,9 @@ namespace WeChatWASM
config.ProjectConf.MemorySize.ToString(),
config.SDKOptions.disableMultiTouch ? "true" : "false",
// Perfstream暂时设为false
"false"
"false",
config.CompileOptions.enableEmscriptenGLX ? "true" : "false",
config.CompileOptions.enableiOSMetal ? "true" : "false"
});
List<Rule> replaceList = new List<Rule>(replaceArrayList);

View File

@ -185,6 +185,7 @@ namespace WeChatWASM
this.formCheckbox("profilingMemory", "Profiling Memory");
this.formCheckbox("webgl2", "WebGL2.0(beta)");
this.formCheckbox("iOSPerformancePlus", "iOSPerformancePlus(?)", "是否使用iOS高性能+渲染方案有助于提升渲染兼容性、降低WebContent进程内存");
this.formCheckbox("EmscriptenGLX", "EmscriptenGLX(?)", "是否使用EmscriptenGLX渲染方案");
this.formCheckbox("iOSMetal", "iOSMetal(?)", "是否使用iOSMetal渲染方案需要开启iOS高性能+模式有助于提升运行性能降低iOS功耗");
this.formCheckbox("deleteStreamingAssets", "Clear Streaming Assets");
this.formCheckbox("cleanBuild", "Clean WebGL Build");
@ -449,6 +450,7 @@ namespace WeChatWASM
this.setData("webgl2", config.CompileOptions.Webgl2);
this.setData("iOSPerformancePlus", config.CompileOptions.enableIOSPerformancePlus);
this.setData("iOSMetal", config.CompileOptions.enableiOSMetal);
this.setData("EmscriptenGLX", config.CompileOptions.enableEmscriptenGLX);
this.setData("fbslim", config.CompileOptions.fbslim);
this.setData("useFriendRelation", config.SDKOptions.UseFriendRelation);
this.setData("useMiniGameChat", config.SDKOptions.UseMiniGameChat);
@ -528,6 +530,7 @@ namespace WeChatWASM
config.CompileOptions.Webgl2 = this.getDataCheckbox("webgl2");
config.CompileOptions.enableIOSPerformancePlus = this.getDataCheckbox("iOSPerformancePlus");
config.CompileOptions.enableiOSMetal = this.getDataCheckbox("iOSMetal");
config.CompileOptions.enableEmscriptenGLX = this.getDataCheckbox("EmscriptenGLX");
config.CompileOptions.fbslim = this.getDataCheckbox("fbslim");
config.SDKOptions.UseFriendRelation = this.getDataCheckbox("useFriendRelation");
config.SDKOptions.UseMiniGameChat = this.getDataCheckbox("useMiniGameChat");

View File

@ -129,6 +129,10 @@ namespace WeChatWASM
{
return WXConvertCore.UseiOSMetal;
});
WXExtEnvDef.RegisterAction("WXConvertCore.UseEmscriptenGLX", (args) =>
{
return WXConvertCore.UseEmscriptenGLX;
});
WXExtEnvDef.RegisterAction("UnityUtil.GetWxSDKRootPath", (args) =>
{
#if UNITY_2018

View File

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

Binary file not shown.

View File

@ -653,6 +653,7 @@
是否使用iOS metal指令流
</summary>
</member>
<!-- Badly formed XML comment ignored for member "F:WeChatWASM.CompileOptions.enableEmscriptenGLX" -->
<member name="F:WeChatWASM.CompileOptions.brotliMT">
<summary>
是否使用brotli多线程压缩

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: cd03477138a9b0d0baef21e42b735798
guid: 10797f324e090b960239c406782c6fa6
DefaultImporter:
externalObjects: {}
userData:

Binary file not shown.

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: cccbd1d680cfe34fa1fef9e4875e5f23
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: 0
Exclude OSXUniversal: 0
Exclude WeixinMiniGame: 0
Exclude Win: 0
Exclude Win64: 0
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 1
settings:
CPU: AnyCPU
DefaultValueInitialized: true
OS: AnyOS
- first:
Standalone: Linux64
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
Standalone: OSXUniversal
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
Standalone: Win
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
Standalone: Win64
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
WeixinMiniGame: WeixinMiniGame
second:
enabled: 1
settings: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 19f5ee838f570d2cb2eb01766b189431
guid: 9eccec0d7076e4595b39d321fc306f7e
DefaultImporter:
externalObjects: {}
userData:

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 16620970dbad2add91ef2a4963799668
guid: 2c710a2108ec0d94e945613e09592153
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b08b1a4e35823a7aee092045108bb998
guid: b5be0ced0eef7e4eaae0da62c1330299
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: fe08ab406c85986c1958d9046dff286b
guid: c9764d9e476ef13ae8066b35612aeb72
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e75e149c5688b70d509ec912632c7125
guid: e4f63164b71cb7b260150cdf79e9461e
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b706630fa74369a499a6107bb158493e
guid: 469ab72ade910f9b9bcf9a1288e316ff
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 41e2d239a088949e810a5a71d2447a03
guid: 1a76540f9c39b8f373698b7aa6344ee9
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 3942dfee7a0055405ecbf81fc08ffb1a
guid: 3820c0d6534a2fdb10c2110ef08a0fe8
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 4875d3b099833ae11c5c7d818a222331
guid: b0c7179d6663c2883afd92173882f6cc
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 917218d882fb0540a75cdc4d2c4aaa00
guid: 4038c0b48d43033b53d7bed51f106500
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 6f1621d4b0aa732225177b08fa154482
guid: 763b15692e4a72cbaf73e2ca6e2aa29c
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 2502d8924ef950e99822b18191b759ec
guid: 9e504ec8c4f793a62850bfaaa4a038d5
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 58cc32e38b5c5e9be108a2c6c8122015
guid: fd110426268c8057921edba6dc14dd2e
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 27524090dfda854898f4783656792f31
guid: dfe7d7cea1d415648e07fd43b7f5cf3b
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 89f30467b968f634337a38f8daa4bccb
guid: 59f0dff8ef40c2d6f618fdbc3c61cd22
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d2869a0b484510796f4c8e8fa6f8e295
guid: 4499ddf637d2c00a83d76229789aca39
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f06c2b3311f43d31514cec63ad2da141
guid: 70e7cb994fefa84bb09dd0324f32f2b4
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 43e9577bbf3114754c8173339f1efe9c
guid: 981286896fd446fcb21116de77964183
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 08bc2289b815bfaef40e5af219ee3b6c
guid: 31f33392b1b55b9c6677a92500e789a1
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d654b637efa259e9eb77cc2eaf90c056
guid: d0382e7d6f3ebbea9d56f0e95d5007b3
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 3303a459fb7badb0fa669cde8f680480
guid: 4de197448e32b1f63f501fb54ddeb8df
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1887927a3b7f74ee3445001f59edcc1a
guid: 11a324f7574f2631a8ecfbe3a07006a4
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a03b1348cf119e64170b744501e16812
guid: ba3c300fe327beafeb33cb5f99e94f6f
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 15c54f99a9336c58ff85a858f6afb3e6
guid: 458c89a8ab2600c197c563bc33fc27d8
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a12b87588e76ae67186cc5576a26d90d
guid: 88bb60278c1f8769c2bfae113f7d2c9d
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 03d35cf0a5d305b61be2cbc4e797ee96
guid: 61ab7c8776c74cd80cbafdfe96d0b4a0
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d296979617575c2db4665f9a181a54ed
guid: 9143cbb525fa0c27a7200df36552bb26
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b09c8b89cdbdb3034a0b7c079747d059
guid: 32f5395aadf12bcb3d69231d2e826979
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 16056d4e47cd2dad1b2b257dc5a28485
guid: 859c75bf52245eedbd9c355cfc950948
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 2488fdef0f4c80f05f36f5a87bcc521d
guid: 980ddff29254dc368ba02fb34c476bae
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f1e385dd3873fa74e70843282ceb829e
guid: e74202e91467fa70c8181b8fcbf7a981
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 869138c48088ae06a5e3d078eca172cd
guid: 4982d90eaf63850eb83b7677bcd35fe5
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a59f10e5cde57c62a7b01a946bb069ac
guid: bea0a4c6553d67c563fa56593fbe3b7c
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1085e12e7d64c2822d31b06850019e2c
guid: 78007bb20e72de65f68ab18664c64398
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f15e1d5095b7689aa358716957300607
guid: 809e3af49c221a0f88fa97b839d12d12
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: aac6b2596b7a35dfb4c54001e92957b7
guid: 5c7ed1606e505b9c512a0863ba20fb9b
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 3cacb7ebee6b46629eaae99e5507d64e
guid: 244a543725812ef28c6acd39f78331f9
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 53d1609c9f651909fc27774a68b63752
guid: 9223babe37cda23d85423f2ab6a4581e
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d531ce508497ef360e4189654410b9df
guid: 1013b1cba44837b63f8be805fcfeb7cb
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 02f7d1b3b1a757432dff954b341702ad
guid: dd9bea6d9c79cdbb4919d74771a6ea9d
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 574cbb3b06c56b3b106cc097096368c6
guid: db90f4e69f2314e11798633a0ef5a734
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c8ccaa82d743e7224ecba421f7667ef9
guid: 2d278823d55c1ddcd1c3fe00ff170a00
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ea5063f0d3e4c692907226cefec8071e
guid: 4a5aabf0a86a16c7f381c0aa7cc2b947
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8cd3af77f6b925534370e2b2ba150424
guid: 9481c046195cac7aa70b59c82a3be990
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 232c61b3bc8a3126ceacc83315d26bf1
guid: 2ee82d0a996b52671e3aa909fcda54da
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 39e18d54ecb5592c34e34670df8e2e08
guid: 13078e4a074222bc8afa9f8c8e244260
DefaultImporter:
externalObjects: {}
userData:

View File

@ -45,7 +45,7 @@ const isIOSWebgl2SystemVersionValid = compareVersion(systemVersion, '15.0') || G
// Android客户端版本>=8.0.19支持webgl2
const isAndroidWebGL2ClientVersionValid = compareVersion(version, '8.0.19');
// 是否用了webgl2
const isWebgl2 = () => GameGlobal.managerConfig.contextConfig.contextType === 2;
const isWebgl2 = () => GameGlobal.managerConfig.contextConfig.contextType === 2 || GameGlobal.managerConfig.contextConfig.contextType === 4;
// 是否支持BufferURL
export const isSupportBufferURL = !isPc
&& (isH5Renderer

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 7647b84fd8a47ec59e0bf818a25cf059
guid: df39f2caab4e152a5b061ee27abcdbd5
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c13bb3f63fb0bc6c7e9f364ef986fa42
guid: 54e76c59351f8ce1b37809be97809a3b
DefaultImporter:
externalObjects: {}
userData:

View File

@ -27,7 +27,11 @@ const managerConfig = {
'$PRELOAD_LIST',
],
contextConfig: {
contextType: $WEBGL_VERSION, // 1: webgl1 2: webgl2
contextType: $WEBGL_VERSION,
contextExt: {
enableGLX: $ENABLE_GLX,
enableMetal: $ENABLE_METAL,
}
},
PROFILER_UPLOAD_URL: '',
};
@ -48,6 +52,7 @@ checkVersion().then((enable) => {
canvas,
events: GameGlobal.events,
WXWASMSDK: GameGlobal.WXWASMSDK,
isSupportEmscriptenGLX: wx.env.isSuppportEmscriptenGLX || wx.env.isSupportEmscriptenGLX || false,
},
}).default;
}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: daec826dc19768004197ea7677d54288
guid: db9868908a1789d7daa9e2a5c3c1b401
DefaultImporter:
externalObjects: {}
userData:

View File

@ -23,7 +23,7 @@
],
"plugins": {
"UnityPlugin": {
"version": "1.2.78",
"version": "dev-247b5ca2438fb0cd5740d36909403fa5",
"provider": "wxe5a48f1ed5f544b7",
"contexts": [
{

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 0080ec2b9b823efd8542b68dc67a1f55
guid: 1a8a92688fdac946374ac2cc145788d7
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 41e6c893cc2db349b3948255255bd7fe
guid: 398bfdbf1d1b04e4122c89e02dbabdf2
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 37f9227ddcd45d542e404baa37499f18
guid: 483648467bdf311b61d917d1d1d35b3f
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: cc9d8ad8ba330116f6e643c95024f377
guid: 6ac85339a1ab9368de03cdadf18e11f0
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 28f7293ddab211917e088fb2fa082915
guid: b6933db94346de5833659bc85f53687d
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 758e6c32137d2e8f21d6de467c9b4895
guid: cd80eb6c0222270ce93734b27649b2b1
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f9444b2dee415af55388fe30af81ca30
guid: 5f59d889a5a56e9fd300991bfb65f089
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5afad0ab97353f79818966730a620bdf
guid: cdd9da81e20acc3340b9337998b4cb54
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1a3421ea435b951cc5527b519970b74e
guid: 30604f9e56fc2cca99bfc314f8aa368e
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 97ced11898f2297d5519b5567e07ec62
guid: cf6702d56cbf11f6b8696b8804148c38
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 28ef9dd41bad287c8e114eb3ef23260e
guid: 6fc28c9dc844dbadbea265612d852733
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 23448545eea8d7f32049b44b82f3d69a
guid: 399b1e0898fe62f4950734b25e4cbf55
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 0918d18cd3bd2d645b034769375b9c2f
guid: 8c53827dadf0cb39b15adcf3c0d32c3d
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 7194e0c57be295c4d2309fa0db599925
guid: e7a41648a282ed9e4189f03b59f72f24
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b73f78b2ed0db2e57379a5c6e52f2a98
guid: ab1fc7b1c5e49875c55a810681ce9dd7
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1038baa9c08e42168d01f2a644e0911d
guid: 882c822c9fda75f123823822fd61880a
DefaultImporter:
externalObjects: {}
userData:

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 02f39686bf5b9b98d4d20741a0bb6c9f
guid: 76772a2e264cc0064be9fc74aa7daabd
DefaultImporter:
externalObjects: {}
userData:

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: bcfb1473f8059e7f14e427a730f8b06a
guid: 5812af313c8289a1bcc5550c1d576ff5
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

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

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: d86f9004971f287b40c252f12bda335a
guid: d907fc34d187261f0fd1eceec09f31d1
DefaultImporter:
externalObjects: {}
userData:

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