暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SwitchOnInteger.cs 338B

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