// Copyright © 2018 Procedural Worlds Pty Limited. All Rights Reserved. using UnityEngine; using UnityEditor; using PWCommon3; namespace Gaia.Internal { public class GaiaStdMenu : Editor { /// /// Show tutorials /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Show Gaia Tutorials...", false, 60)] public static void ShowTutorial() { Application.OpenURL(PWApp.CONF.TutorialsLink); } /// /// Show support page /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Show Gaia Support, Lodge a Ticket...", false, 61)] public static void ShowSupport() { Application.OpenURL(PWApp.CONF.SupportLink); } /// /// Show review option /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Please Review Gaia...", false, 62)] public static void ShowProductAssetStore() { Application.OpenURL(PWApp.CONF.ASLink); } /// /// Show the welcome screen for this app /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Show Gaia Welcome...", false, 63)] public static void ShowProductWelcome() { PWWelcome.ShowWelcome(PWApp.CONF); } } }