暂无描述
您最多选择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. }