You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// Copyright © 2018 Procedural Worlds Pty Limited. All Rights Reserved.
|
|
using UnityEngine;
|
|
using UnityEditor;
|
|
using PWCommon5;
|
|
|
|
namespace Gaia.Internal
|
|
{
|
|
public class GaiaStdMenu : Editor
|
|
{
|
|
/// <summary>
|
|
/// Show tutorials
|
|
/// </summary>
|
|
[MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Show Gaia Tutorials...", false, 60)]
|
|
public static void ShowTutorial()
|
|
{
|
|
Application.OpenURL(PWApp.CONF.TutorialsLink);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show support page
|
|
/// </summary>
|
|
[MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Show Gaia Support, Lodge a Ticket...", false, 61)]
|
|
public static void ShowSupport()
|
|
{
|
|
Application.OpenURL(PWApp.CONF.SupportLink);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show review option
|
|
/// </summary>
|
|
[MenuItem("Window/" + PWConst.COMMON_MENU + "/Gaia/Please Review Gaia...", false, 62)]
|
|
public static void ShowProductAssetStore()
|
|
{
|
|
Application.OpenURL(PWApp.CONF.ASLink);
|
|
}
|
|
}
|
|
}
|