diff options
author | chai <chaifix@163.com> | 2021-05-10 21:35:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-05-10 21:35:08 +0800 |
commit | 61f7041fd10f1545991e6fbc66ade10c6835c5a4 (patch) | |
tree | bd2b34aef0d5e8e87706d90c74bb58e7b74d8d82 /CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs | |
parent | 24d5ca3ef3c8a57107b27ba650401f11cec588d5 (diff) |
+misc
Diffstat (limited to 'CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs')
-rw-r--r-- | CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs b/CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs new file mode 100644 index 0000000..5d9e434 --- /dev/null +++ b/CollectionProj/Assets/Tools/CustomBaking/Editor/CustomBakingEditor.cs @@ -0,0 +1,41 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEditor;
+
+namespace CustomBaking
+{
+
+ public static class CustomBakingMenu
+ {
+ [MenuItem("CustomBaking/Open Window")]
+ static void OpenCustomBaking()
+ {
+
+ }
+
+ [MenuItem("CustomBaking/Help")]
+ static void Help()
+ {
+
+ }
+
+ [MenuItem("CustomBaking/About")]
+ static void About()
+ {
+
+ }
+ }
+
+ public class CustomBakingEditor : EditorWindow
+ {
+
+
+ public void OnGUI()
+ {
+
+ }
+
+ }
+
+}
\ No newline at end of file |