我死去

This commit is contained in:
2025-11-30 15:13:57 +08:00
parent bcd2c82142
commit d0d373a948
38 changed files with 243029 additions and 16615 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
using Ichni.RhythmGame;
using TMPro;
@@ -48,7 +49,6 @@ namespace Ichni.Editor
inspection.MarkedElements.TryAdd(mark, this);
return this;
}
public abstract DynamicUIElement AddListenerFunction(UnityAction action);
}
@@ -68,8 +68,13 @@ namespace Ichni.Editor
public void ApplyContent();
}
public interface ICanSetLinkedBaseElement
public interface IHaveTagLink
{
public void SetLinkedBaseElement(IBaseElement baseElement, string parameterName);
public IBaseElement connectedBaseElement { get; set; }
// public void GetApply()
// {
// EditorManager.instance.projectInformation.tagManager.SyncTagedElement(connectedBaseElement);
// }
}
}

View File

@@ -40,6 +40,11 @@ namespace Ichni.Editor
connectedGameElement.SetUpInspector();
EditorManager.instance.uiManager.timeline.SetTimeLine(gameElement);
}
public void SetInspector(IBaseElement gameElement)
{
ClearInspector();
gameElement.SetUpInspector();
}
public void ClearInspector()
{