summaryrefslogtreecommitdiff
path: root/Assets/Tools/Editor/ShortcutHelper.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-03-10 14:07:40 +0800
committerchai <chaifix@163.com>2022-03-10 14:07:40 +0800
commit22891bf59032ba88262824255a706d652031384b (patch)
tree7595439ba9966c9402d37e37cee5e8cf098757d5 /Assets/Tools/Editor/ShortcutHelper.cs
parent8b04ea73e540067f83870b61d89db4868fea5e8a (diff)
* move folder
Diffstat (limited to 'Assets/Tools/Editor/ShortcutHelper.cs')
-rw-r--r--Assets/Tools/Editor/ShortcutHelper.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/Assets/Tools/Editor/ShortcutHelper.cs b/Assets/Tools/Editor/ShortcutHelper.cs
deleted file mode 100644
index 33cf29c5..00000000
--- a/Assets/Tools/Editor/ShortcutHelper.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEditor;
-using UnityEditor.SceneManagement;
-
-public class ShortcutHelper
-{
- [MenuItem("Erika/Scene/打开Saionji场景")]
- static void OpenSaionjiScene()
- {
- string path = Application.dataPath + "/Scenes/Demo/FightDemoScene.unity";
- if (!EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo())
- {
- return;
- }
- EditorSceneManager.OpenScene(path);
- }
-
- [MenuItem("Erika/Scene/打开UMotion场景")]
- static void OpenUMotionScene()
- {
- string path = Application.dataPath + "/Scenes/Demo/AnimationEditScene.unity";
- if (!EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo())
- {
- return;
- }
- EditorSceneManager.OpenScene(path);
- }
-
-} \ No newline at end of file