This commit is contained in:
2025-02-28 21:12:20 +08:00
parent 07256af84b
commit e638d1cec2
6 changed files with 810 additions and 223 deletions

View File

@@ -56,9 +56,17 @@ namespace Ichni
this.elementName = "EditorManager";
this.elementGuid = Guid.Empty;
uiManager.hierarchy.GenerateTab(this, null);
StartCoroutine(DelayLoading());
}
public IEnumerator DelayLoading()
{
StartCoroutine(projectManager.loadManager.Load("TestProject"));
musicPlayer.audioSource.clip = songInformation.song;
yield return new WaitForSeconds(2);//什么时候能加个loading界面
beatmapContainer.gameElementList.ForEach(gameElement =>
{
@@ -66,7 +74,6 @@ namespace Ichni
gameElement.Refresh();
});
}
public override void SetUpInspector()
{
IHaveInspection inspector = uiManager.inspector;