Mp3读取,Effect Remove

Signed-off-by: TRAfoer <lhf190@outlook.com>
This commit is contained in:
2025-07-12 18:27:10 +08:00
parent 2ccac78620
commit 47ec9ddb21
164 changed files with 308674 additions and 50659 deletions

View File

@@ -11,7 +11,7 @@ namespace Ichni.Editor
public class LogWindow : StaticWindow
{
public GameObject logTextPrefab;
List<string> savedTexts;
public RectTransform textRect;
@@ -28,7 +28,7 @@ namespace Ichni.Editor
copyAllTextsButton.onClick.AddListener(CopyAllText);
removeAllTextsButton.onClick.AddListener(RemoveAllText);
}
public static void Log(string text, Color color = default)
{
EditorManager.instance.uiManager.mainPage.logWindow.AddLog(text, color);
@@ -43,7 +43,7 @@ namespace Ichni.Editor
logText.SetLogText(text, color);
logTexts.Enqueue(logText);
}
private void CheckLogTextCapacity()
{
if (logTexts.Count >= logTextCapacity)
@@ -59,7 +59,7 @@ namespace Ichni.Editor
{
allText += text + "\n";
}
GUIUtility.systemCopyBuffer = allText;
}
@@ -73,4 +73,5 @@ namespace Ichni.Editor
savedTexts.Clear();
}
}
}