特效范例
This commit is contained in:
@@ -18,8 +18,13 @@ namespace Ichni.Editor
|
||||
{
|
||||
logTexts = new Queue<LogText>();
|
||||
}
|
||||
|
||||
public static void Log(string text, Color color = default)
|
||||
{
|
||||
EditorManager.instance.uiManager.mainPage.logWindow.AddLog(text, color);
|
||||
}
|
||||
|
||||
public void AddLog(string text, Color color = default)
|
||||
private void AddLog(string text, Color color = default)
|
||||
{
|
||||
CheckLogTextCapacity();
|
||||
LogText logText = LeanPool.Spawn(logTextPrefab, textRect).GetComponent<LogText>();
|
||||
|
||||
Reference in New Issue
Block a user