diff options
author | chai <chaifix@163.com> | 2022-03-10 14:07:40 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-03-10 14:07:40 +0800 |
commit | 22891bf59032ba88262824255a706d652031384b (patch) | |
tree | 7595439ba9966c9402d37e37cee5e8cf098757d5 /Assets/Tools/Editor/ErikaScenes.cs | |
parent | 8b04ea73e540067f83870b61d89db4868fea5e8a (diff) |
* move folder
Diffstat (limited to 'Assets/Tools/Editor/ErikaScenes.cs')
-rw-r--r-- | Assets/Tools/Editor/ErikaScenes.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Assets/Tools/Editor/ErikaScenes.cs b/Assets/Tools/Editor/ErikaScenes.cs deleted file mode 100644 index a976fbba..00000000 --- a/Assets/Tools/Editor/ErikaScenes.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEditor;
-using UnityEditor.SceneManagement;
-
-public static class ErikaScenes
-{
-
- [MenuItem("Erika/Scene/打开特效场景")]
- static void OpenFxScene()
- {
- string animScene = "Assets/Bundle/Scenes/Demo/VfxScene.unity";
- var scene = EditorSceneManager.GetActiveScene();
- if (scene == null || scene.path != animScene)
- {
- EditorSceneManager.OpenScene(animScene);
- }
- }
-
- [MenuItem("Erika/Scene/打开动画场景")]
- static void OpenAnimationScene()
- {
- string animScene = "Assets/Bundle/Scenes/Demo/AnimationEditScene.unity";
- var scene = EditorSceneManager.GetActiveScene();
- if (scene == null || scene.path != animScene)
- {
- EditorSceneManager.OpenScene(animScene);
- }
- }
-
-}
|