forked from BilalY/Rasagar
15 lines
338 B
C#
15 lines
338 B
C#
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>
|
|
{
|
|
}
|
|
}
|