您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
26 行
675 B
26 行
675 B
namespace ParrelSync.NonCore
|
|
{
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
public class OtherMenuItem
|
|
{
|
|
[MenuItem("ParrelSync/GitHub/View this project on GitHub", priority = 10)]
|
|
static void OpenGitHub()
|
|
{
|
|
Application.OpenURL(ExternalLinks.GitHubHome);
|
|
}
|
|
|
|
[MenuItem("ParrelSync/GitHub/View FAQ", priority = 11)]
|
|
static void OpenFAQ()
|
|
{
|
|
Application.OpenURL(ExternalLinks.FAQ);
|
|
}
|
|
|
|
[MenuItem("ParrelSync/GitHub/View Issues", priority = 12)]
|
|
static void OpenGitHubIssues()
|
|
{
|
|
Application.OpenURL(ExternalLinks.GitHubIssue);
|
|
}
|
|
}
|
|
}
|