Files
com.misaki.graph-view/Runtime/Helpers/DataNodeExtension.cs
Misaki c853994bf5 Added IExecutable and ISlotContainer interface.
Changed SlotContainerNode to ExecutableNode
2024-11-05 02:25:15 +09:00

18 lines
426 B
C#

using System.Collections.Generic;
namespace Misaki.GraphView
{
public static class DataNodeExtension
{
public static void ClearAllExecuteFlag(this IList<DataNode> nodes)
{
foreach (var node in nodes)
{
if (node is IExecutable executable)
{
executable.ClearExecutionFlag();
}
}
}
}
}