2024-09-20 20:30:10 +02:00

15 lines
351 B
C#

namespace Unity.VisualScripting
{
/// <summary>
/// Selects a value from a set by switching over an integer.
/// </summary>
[UnitCategory("Control")]
[UnitTitle("Select On Integer")]
[UnitShortTitle("Select")]
[UnitSubtitle("On Integer")]
[UnitOrder(8)]
public class SelectOnInteger : SelectUnit<int>
{
}
}