浏览代码

Added Help Menu LInks

/main
Thomas ICHÉ 4 年前
当前提交
48952e4b
共有 2 个文件被更改,包括 24 次插入0 次删除
  1. 1
      CHANGELOG.md
  2. 23
      Editor/MenuItems.cs

1
CHANGELOG.md


* Preferences for Advanced Hierarchy View
* Added API to AdvancedHierarchyView to add other Icons from component types
* Help Menu links (github, documentation, openUPM)
#### Changed

23
Editor/MenuItems.cs


}
#endregion
#region HELP
[MenuItem("Help/Gameplay Ingredients/Documentation")]
static void Help()
{
Application.OpenURL("https://peeweek.readthedocs.io/en/latest/gameplay-ingredients/");
}
[MenuItem("Help/Gameplay Ingredients/GitHub Repository (Issues and Releases)")]
static void GitHub()
{
Application.OpenURL("https://github.com/peeweek/net.peeweek.gameplay-ingredients/");
}
[MenuItem("Help/Gameplay Ingredients/OpenUPM page")]
static void OpenUPM()
{
Application.OpenURL("https://openupm.com/packages/net.peeweek.gameplay-ingredients/");
}
#endregion
}
}
正在加载...
取消
保存