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

IndexedSelection.cs 298B

12345678910111213
  1. using UnityEngine;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. namespace UnityEditor.U2D.Common.Path
  6. {
  7. [Serializable]
  8. internal class IndexedSelection : SerializableSelection<int>
  9. {
  10. protected override int GetInvalidElement() { return -1; }
  11. }
  12. }