You've already forked Commercialization.topon
update 1.1.25
This commit is contained in:
@@ -1,37 +1,40 @@
|
|||||||
//菜单栏
|
//菜单栏
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
// using DownloadManager;
|
// using DownloadManager;
|
||||||
|
|
||||||
namespace AnyThink.Scripts.IntegrationManager.Editor
|
namespace AnyThink.Scripts.IntegrationManager.Editor
|
||||||
{
|
{
|
||||||
public class AnyThinkMenuItems : MonoBehaviour
|
public class AnyThinkMenuItems : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
#if AnyThinkSDKEditor
|
||||||
/**
|
/**
|
||||||
* The special characters at the end represent a shortcut for this action.
|
* The special characters at the end represent a shortcut for this action.
|
||||||
*
|
*
|
||||||
* % - ctrl on Windows, cmd on macOS
|
* % - ctrl on Windows, cmd on macOS
|
||||||
* # - shift
|
* # - shift
|
||||||
* & - alt
|
* & - alt
|
||||||
*
|
*
|
||||||
* So, (shift + cmd/ctrl + t) will launch the integration manager
|
* So, (shift + cmd/ctrl + t) will launch the integration manager
|
||||||
*/
|
*/
|
||||||
[MenuItem("AnyThink/SDK Manager %#t")]
|
[MenuItem ("AnyThink/SDK Manager %#t")]
|
||||||
private static void IntegrationManager()
|
private static void IntegrationManager ()
|
||||||
{
|
{
|
||||||
|
ATIntegrationManagerWindow.ShowManager ();
|
||||||
ATIntegrationManagerWindow.ShowManager();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[MenuItem("AnyThink/Documentation")]
|
[MenuItem ("AnyThink/Documentation")]
|
||||||
public static void Documentation()
|
public static void Documentation ()
|
||||||
{
|
{
|
||||||
// if (ATConfig.isSelectedChina()) {
|
// if (ATConfig.isSelectedChina()) {
|
||||||
// Application.OpenURL("https://newdocs.toponad.com/docs/lgfbO4");
|
// Application.OpenURL("https://newdocs.toponad.com/docs/lgfbO4");
|
||||||
// } else {
|
// } else {
|
||||||
// Application.OpenURL("https://docs.toponad.com/#/en-us/unity/unity_doc/unity_access_doc_new?id=_3-integration");
|
// Application.OpenURL("https://docs.toponad.com/#/en-us/unity/unity_doc/unity_access_doc_new?id=_3-integration");
|
||||||
// }
|
// }
|
||||||
Application.OpenURL("https://newdocs.toponad.com/docs/lgfbO4");
|
Application.OpenURL ("https://newdocs.toponad.com/docs/lgfbO4");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user