File size: 338 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | namespace Unity.VisualScripting
{
/// <summary>
/// Branches flow by switching over an integer.
/// </summary>
[UnitCategory("Control")]
[UnitTitle("Switch On Integer")]
[UnitShortTitle("Switch")]
[UnitSubtitle("On Integer")]
[UnitOrder(5)]
public class SwitchOnInteger : SwitchUnit<int>
{
}
}
|