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

@@ -25,9 +25,9 @@ public class SubTab : MonoBehaviour
Time = time;
connectObj.Add(Objs);
button.GetComponentInChildren<TMP_Text>().text = connectObj.Count().ToString();
transform.position = new Vector3(
timelineTab.MoveArea.position.x + (time / timeline.timePerBeat * timePointerModule.timePointerInterval)
, transform.position.y, 0
transform.localPosition = new Vector3(
timelineTab.MoveArea.localPosition.x + (time / timeline.timePerBeat * timePointerModule.timePointerInterval)
, transform.localPosition.y, 0
);
}
// public void Update()

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8b0f36136b81e014bb5d6dbd951a3360
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

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;