HomePage.cs 295 B

1234567891011121314151617
  1. #if UNITY_2019_4_OR_NEWER
  2. using System;
  3. using UnityEditor;
  4. using UnityEngine;
  5. namespace YooAsset.Editor
  6. {
  7. internal class HomePageWindow
  8. {
  9. [MenuItem("YooAsset/Home Page", false, 1)]
  10. public static void OpenWindow()
  11. {
  12. Application.OpenURL("https://www.yooasset.com/");
  13. }
  14. }
  15. }
  16. #endif