File size: 487 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | namespace Unity.VisualScripting
{
/// <summary>
/// Returns a null value.
/// </summary>
[UnitCategory("Nulls")]
public sealed class Null : Unit
{
/// <summary>
/// A null value.
/// </summary>
[DoNotSerialize]
public ValueOutput @null { get; private set; }
protected override void Definition()
{
@null = ValueOutput<object>(nameof(@null), (recursion) => null).Predictable();
}
}
}
|