説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SelectOnInteger.cs 351B

1234567891011121314
  1. namespace Unity.VisualScripting
  2. {
  3. /// <summary>
  4. /// Selects a value from a set by switching over an integer.
  5. /// </summary>
  6. [UnitCategory("Control")]
  7. [UnitTitle("Select On Integer")]
  8. [UnitShortTitle("Select")]
  9. [UnitSubtitle("On Integer")]
  10. [UnitOrder(8)]
  11. public class SelectOnInteger : SelectUnit<int>
  12. {
  13. }
  14. }