File size: 351 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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>
{
}
}
|