UIElementsIcon.cs 722 B

12345678910111213141516171819202122232425
  1. #if UNITY_2019_4_OR_NEWER
  2. namespace YooAsset.Editor
  3. {
  4. /// <summary>
  5. /// 引擎图标名称
  6. /// </summary>
  7. public class UIElementsIcon
  8. {
  9. public const string RecordOn = "d_Record On@2x";
  10. public const string RecordOff = "d_Record Off@2x";
  11. #if UNITY_2019
  12. public const string FoldoutOn = "IN foldout on";
  13. public const string FoldoutOff = "IN foldout";
  14. #else
  15. public const string FoldoutOn = "d_IN_foldout_on@2x";
  16. public const string FoldoutOff = "d_IN_foldout@2x";
  17. #endif
  18. public const string VisibilityToggleOff = "animationvisibilitytoggleoff@2x";
  19. public const string VisibilityToggleOn = "animationvisibilitytoggleon@2x";
  20. }
  21. }
  22. #endif