Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UIResourceUtils.cs 1.8KB

12345678910111213141516171819202122
  1. namespace UnityEditor.Purchasing
  2. {
  3. static class UIResourceUtils
  4. {
  5. internal static readonly string purchasingServicesRootUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/PurchasingProjectSettings.uxml";
  6. internal static readonly string labelUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/Label.uxml";
  7. internal static readonly string analyticsWarningUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/AnalyticsWarning.uxml";
  8. internal static readonly string catalogUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/CatalogEditor.uxml";
  9. internal static readonly string platformSupportUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/PlatformSupportVisual.uxml";
  10. internal static readonly string googlePlayConfigUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/GooglePlayConfiguration.uxml";
  11. internal static readonly string appleConfigUxmlPath = $"{SettingsUIConstants.packageUxmlRoot}/AppleConfiguration.uxml";
  12. internal static readonly string platformSupportCommonUssPath = $"{SettingsUIConstants.packageUssRoot}/PlatformSupportVisualCommon.uss";
  13. internal static readonly string platformSupportDarkUssPath = $"{SettingsUIConstants.packageUssRoot}/PlatformSupportVisualDark.uss";
  14. internal static readonly string platformSupportLightUssPath = $"{SettingsUIConstants.packageUssRoot}/PlatformSupportVisualLight.uss";
  15. internal static readonly string purchasingCommonUssPath = $"{SettingsUIConstants.packageUssRoot}/ServicesProjectSettingsCommon.uss";
  16. internal static readonly string purchasingDarkUssPath = $"{SettingsUIConstants.packageUssRoot}/ServicesProjectSettingsDark.uss";
  17. internal static readonly string purchasingLightUssPath = $"{SettingsUIConstants.packageUssRoot}/ServicesProjectSettingsLight.uss";
  18. }
  19. }