暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace UnityEditor.U2D.PSD
  5. {
  6. static class Tooltips
  7. {
  8. public static readonly string importToggleToolTip = L10n.Tr("Toggle to import layer from Photoshop file.");
  9. public static readonly string collapseToggleTooltip = L10n.Tr("Toggle to merge a layer group into a single Sprite.");
  10. public static readonly string layerHiddenToolTip = L10n.Tr("The layer is hidden in the source file.");
  11. public static readonly string hiddenLayerNotImportWarning = L10n.Tr( "Layer will not be imported because hidden layers are excluded from import.");
  12. public static readonly string groupSeparatedToolTip = L10n.Tr("Layers Separated. Click to merge them.");
  13. public static readonly string groupMergedToolTip = L10n.Tr("Layers merged. Click to separate them.");
  14. public static readonly string groupMixedToolTip = L10n.Tr("Group contains child groups that are merged.");
  15. }
  16. }