Clip保存与读取

This commit is contained in:
SoulliesOfficial
2025-03-01 12:50:13 -05:00
parent ed863d6591
commit 6aba331079
27 changed files with 3573 additions and 32 deletions

View File

@@ -12,5 +12,14 @@ namespace Ichni.Editor
public RectTransform windowRect;
public Button closeButton;
public TMP_Text title;
protected void InitializeWindow(string titleText)
{
title.text = titleText;
closeButton.onClick.AddListener(() =>
{
gameObject.SetActive(false);
});
}
}
}