namespace Unity.VisualScripting { /// /// Returns a null value. /// [UnitCategory("Nulls")] public sealed class Null : Unit { /// /// A null value. /// [DoNotSerialize] public ValueOutput @null { get; private set; } protected override void Definition() { @null = ValueOutput(nameof(@null), (recursion) => null).Predictable(); } } }