Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IndexedSelection.cs 291B

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