This commit is contained in:
zhangzheng
2025-12-16 17:21:46 +08:00
parent fb0d69cff9
commit 42161fa127
7 changed files with 13 additions and 7 deletions

View File

@@ -6,7 +6,9 @@
"com.stary.evo.editor",
"com.stary.buildoriginality.runtime",
"YooAsset",
"YooAsset.Editor"
"YooAsset.Editor",
"DOTween.Modules",
"UniTask"
],
"includePlatforms": [
"Editor"

View File

@@ -31,6 +31,11 @@ namespace Stary.Evo
public async static Task<string[]> GetServerDomainAllName()
{
var serverDomainEntities = await GetServerDomainAll();
if (serverDomainEntities == null)
{
Debug.LogError($"UnityEvo:获取服务器全部作用域失败...服务器返回空");
return null;
}
List<string> domains = new List<string>();
for (int i = 0; i < serverDomainEntities.Count; i++)
{

View File

@@ -1,6 +1,6 @@
{
"name": "com.staryevo.buildoriginality",
"version": "1.0.10",
"version": "1.0.11",
"displayName": "00.StaryEvo.BuildOriginality",
"description": "美术打包工具",
"unity": "2021.3",

View File

@@ -14,7 +14,7 @@ namespace Stary.Evo
public string[] PatchedAOTAssemblyList =
{
"System.Core.dll",
"System.Core.dll",
"UnityEngine.CoreModule.dll",
"mscorlib.dll",
"DOTween.dll",

View File

@@ -181,7 +181,6 @@ namespace Stary.Evo
{
await SceneManager.UnloadSceneAsync(_sceneName);
}
AppConfig.PackageDomainName = "";
}
}

View File

@@ -90,14 +90,14 @@ namespace Stary.Evo
}
public void OpenDomain(string domain, OpenDomainType openDomainType)
public async void OpenDomain(string domain, OpenDomainType openDomainType)
{
this.domain = domain;
_devLoadSystem.SetOpenDomainType(openDomainType);
if (this.domain != AppConfig.PackageDomainName)
{
AppConfig.PackageDomainName = domain;
_devLoadSystem.SetCurState(nameof(ResStartState));
await _devLoadSystem.SetCurState(nameof(ResStartState));
}
else
{

View File

@@ -1,6 +1,6 @@
{
"name": "com.staryevo.tools",
"version": "1.2.14",
"version": "1.2.15",
"displayName": "00.StaryEvo.Tools",
"description": "This is an Framework package(后台服务器版本端口9527)",
"unity": "2021.3",