升级sdk至 2.1.1

This commit is contained in:
2024-06-05 15:09:03 +08:00
parent 20e4599ffd
commit 73b73a2494
61 changed files with 466 additions and 105 deletions

View File

@@ -1,8 +1,6 @@
//菜单栏
using UnityEditor;
using UnityEngine;
// using DownloadManager;
namespace AnyThink.Scripts.IntegrationManager.Editor
@@ -12,28 +10,29 @@ namespace AnyThink.Scripts.IntegrationManager.Editor
#if AnyThinkSDKEditor
/**
* The special characters at the end represent a shortcut for this action.
*
*
* % - ctrl on Windows, cmd on macOS
* # - shift
* & - alt
*
*
* So, (shift + cmd/ctrl + t) will launch the integration manager
*/
[MenuItem ("AnyThink/SDK Manager %#t")]
private static void IntegrationManager ()
[MenuItem("AnyThink/SDK Manager %#t")]
private static void IntegrationManager()
{
ATIntegrationManagerWindow.ShowManager ();
ATIntegrationManagerWindow.ShowManager();
}
[MenuItem ("AnyThink/Documentation")]
public static void Documentation ()
[MenuItem("AnyThink/Documentation")]
public static void Documentation()
{
// if (ATConfig.isSelectedChina()) {
// Application.OpenURL("https://newdocs.toponad.com/docs/lgfbO4");
// } else {
// 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
}