您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

39 行
1.2 KiB

using System;
using System.Collections.Generic;
namespace UnityEditor.Graphing
{
public enum ModificationScope
{
Nothing = 0,
Node = 1,
Graph = 2,
Topological = 3
}
public delegate void OnNodeModified(INode node, ModificationScope scope);
public interface INode
{
OnNodeModified onModified { get; set; }
IGraph owner { get; set; }
Guid guid { get; }
Guid RewriteGuid();
string name { get; set; }
bool canDeleteNode { get; }
IEnumerable<T> GetInputSlots<T>() where T : ISlot;
IEnumerable<T> GetOutputSlots<T>() where T : ISlot;
IEnumerable<T> GetSlots<T>() where T : ISlot;
void AddSlot(ISlot slot);
void RemoveSlot(int slotId);
SlotReference GetSlotReference(int slotId);
T FindSlot<T>(int slotId) where T : ISlot;
T FindInputSlot<T>(int slotId) where T : ISlot;
T FindOutputSlot<T>(int slotId) where T : ISlot;
IEnumerable<ISlot> GetInputsWithNoConnection();
DrawState drawState { get; set; }
bool hasError { get; }
void ValidateNode();
void UpdateNodeAfterDeserialization();
}
}