From 3708d0a07ce43c3d98a0171eacfa9c370c873f96 Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 2 Nov 2020 19:53:12 +0800 Subject: =?UTF-8?q?*=E5=8F=97=E5=87=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Editor/Tools/ShortcutHelper.cs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Assets/Editor/Tools/ShortcutHelper.cs (limited to 'Assets/Editor/Tools/ShortcutHelper.cs') diff --git a/Assets/Editor/Tools/ShortcutHelper.cs b/Assets/Editor/Tools/ShortcutHelper.cs new file mode 100644 index 00000000..9000e738 --- /dev/null +++ b/Assets/Editor/Tools/ShortcutHelper.cs @@ -0,0 +1,32 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; +using UnityEditor.SceneManagement; + +public class ShortcutHelper +{ + [MenuItem("Erika/Scene/打开Saionji场景 _F5")] + static void OpenSaionjiScene() + { + string path = Application.dataPath + "/Scenes/Demo/SaionjiShowOff.unity"; + if (!EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo()) + { + return; + } + EditorSceneManager.OpenScene(path); + } + + [MenuItem("Erika/Scene/打开UMotion场景 _F6")] + static void OpenUMotionScene() + { + string path = Application.dataPath + "/Scenes/Demo/AnimationEditScene.unity"; + if (!EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo()) + { + return; + } + EditorSceneManager.OpenScene(path); + } + + +} -- cgit v1.1-26-g67d0