Rasagar/Library/PackageCache/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Greater.cs
2024-08-26 23:07:20 +03:00

27 lines
717 B
C#

namespace Unity.VisualScripting
{
/// <summary>
/// Compares two inputs to determine whether the first is greater than the second.
/// </summary>
[UnitCategory("Logic")]
[UnitOrder(11)]
public sealed class Greater : BinaryComparisonUnit
{
/// <summary>
/// Whether A is greater than B.
/// </summary>
[PortLabel("A > B")]
public override ValueOutput comparison => base.comparison;
protected override bool NumericComparison(float a, float b)
{
return a > b;
}
protected override bool GenericComparison(object a, object b)
{
return OperatorUtility.GreaterThan(a, b);
}
}
}