SquareDash/Library/PackageCache/com.unity.visualscripting@1.9.1/Runtime/VisualScripting.Flow/EditorBinding/UnitFooterPortsAttribute.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

14 lines
434 B
C#

using System;
namespace Unity.VisualScripting
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public sealed class UnitFooterPortsAttribute : Attribute
{
public bool ControlInputs { get; set; } = false;
public bool ControlOutputs { get; set; } = false;
public bool ValueInputs { get; set; } = true;
public bool ValueOutputs { get; set; } = true;
}
}