update json

This commit is contained in:
2023-01-29 17:19:48 +08:00
parent d646659fcf
commit 37f58dcd84
16 changed files with 11 additions and 7 deletions

27
Editor/ATMenu.cs Normal file
View File

@@ -0,0 +1,27 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
public class ATMenu : UnityEditor.Editor
{
// Start is called before the first frame update
[MenuItem("AnyThink/Documentation", false, 0)]
public static void Documentation()
{
Application.OpenURL("https://docs.toponad.com/#/en-us/unity/download/package?_t=YyEWrxzJVTjbQFhszxvWabdIARg7mzE4");
}
[MenuItem("AnyThink/SDK Manager", false, 0)]
public static void sdkManager()
{
ATDownloadManager.showManager();
}
// Update is called once per frame
void Update()
{
}
}