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

TilemapEditorToolPreferencesAsset.cs 504B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace UnityEditor.Tilemaps
  5. {
  6. [Serializable]
  7. internal struct DefaultTilemapEditorTool
  8. {
  9. public string fullTypeName;
  10. [NonSerialized]
  11. public Type tilemapEditorToolType;
  12. [NonSerialized]
  13. public TilemapEditorTool toolInstance;
  14. }
  15. internal class TilemapEditorToolPreferencesAsset : ScriptableObject
  16. {
  17. public List<DefaultTilemapEditorTool> m_UserDefaultTools;
  18. }
  19. }