Added RelayNodeView;

Chnaged GraphView to multiple files for better organization;
This commit is contained in:
Misaki
2024-11-05 22:46:42 +09:00
parent c853994bf5
commit 02ae77f17a
25 changed files with 863 additions and 620 deletions

View File

@@ -1,16 +1,18 @@
using System;
using UnityEngine;
namespace Misaki.GraphView
{
public interface ILogger
{
public Action<ExecutableNode, string, LogType> OnLog { get; set; }
public void LogInfo(ExecutableNode node, string message);
public void LogWarning(ExecutableNode node, string message);
public void LogError(ExecutableNode node, string message);
public Action<DataNode, string, LogType> OnLog
{
get; set;
}
public void LogInfo(DataNode node, string message);
public void LogWarning(DataNode node, string message);
public void LogError(DataNode node, string message);
public void ClearLogs();
}
}