using System; using UnityEditor.Experimental.GraphView; namespace TNode.Attribute.Ports{ /// /// Batch out port attribute could specify a batch out port,allowing large scale calculation. /// [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] public class BatchOutputAttribute:PortAttribute{ } }