Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /EditorBinding /UnitFooterPortsAttribute.cs
| using System; | |
| namespace Unity.VisualScripting | |
| { | |
| [] | |
| 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; | |
| } | |
| } | |