UnityEssentials
Small but useful tools and features for Unity
EssentialsHelp.cs
Go to the documentation of this file.
1 using UnityEditor;
2 using UnityEngine;
3 
4 #if UNITY_EDITOR
5 namespace Essentials
6 {
10  public static class EssentialsHelp
11  {
15  [MenuItem("Help/Essentials/Rate the asset! ❤️", false, 0)]
16  public static void OpenLinkRateAsset(){
17  Application.OpenURL("https://assetstore.unity.com/packages/slug/161141");
18  }
22  [MenuItem("Help/Essentials/Give feedback or any ideas! 💡",false, 0)]
23  public static void OpenLinkFeedback(){
24  Application.OpenURL("https://forms.gle/diuUu6nZHAf5T67C9");
25  }
26 
27 
31  [MenuItem("Help/Essentials/Documentation",false, 50)]
32  public static void OpenLinkDocumentation(){
33  Application.OpenURL("https://docs.google.com/document/d/1-strmOzT7ka8uO8hEH_W3Xjlr-ajjKcJ0b6h5KYnpJQ/edit?usp=sharing");
34  }
38  [MenuItem("Help/Essentials/Scripting Documentation",false, 50)]
39  public static void OpenLinkScriptingDocumentation(){
40  Application.OpenURL("https://guplem.github.io/Essentials/html/");
41  }
42 
46  [MenuItem("Help/Essentials/Scripting Documentation",false, 50)]
47  public static void OpenLinkGitHubRepository(){
48  Application.OpenURL("https://github.com/guplem/UnityEssentials");
49  }
50 
54  [MenuItem("Help/Essentials/About me : )", false, 100)]
55  public static void OpenLinkAboutMe(){
56  Application.OpenURL("https://TriunityStudios.com");
57  }
58 
59  }
60 }
61 
62 #endif