summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-06-28 21:00:55 +0800
committerchai <215380520@qq.com>2023-06-28 21:00:55 +0800
commit05cb0609b1ddef5380a7c9442605cbfdad4df192 (patch)
tree1f0414bf1f059d9157772142fd8cf70a5507631c /WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs
parentb97cddeb2c133d563aa78eac87ab3991c233b37f (diff)
*misc
Diffstat (limited to 'WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs')
-rw-r--r--WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs b/WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs
new file mode 100644
index 0000000..7c0b77d
--- /dev/null
+++ b/WorldlineKeepers/Assets/Tools/LevelEditor/LevelExportSetting.cs
@@ -0,0 +1,17 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class LevelExportSetting : MonoBehaviour
+{
+
+ public string m_TargetFolder = "Assets/Bundle/stages/";
+
+ public string targetJsonFile { get { return m_TargetFolder.TrimEnd('/') + "/stage.json"; } }
+
+ public void OnGUI()
+ {
+
+ }
+
+} \ No newline at end of file