15 lines
351 B
C#
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>
|
|
{
|
|
}
|
|
}
|