aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.h
diff options
context:
space:
mode:
authorJuan Linietsky2017-02-12 22:52:02 -0300
committerJuan Linietsky2017-02-12 23:13:14 -0300
commitebb7d2cdb7c5cd755f0b4b69db934df9cc15b1d6 (patch)
tree54834d4b17f9ec1c164ea213e5343104d37308b6 /tools/editor/editor_node.h
parent6abe141579742a0a84234bc71257d7b037511f36 (diff)
downloadgodot-ebb7d2cdb7c5cd755f0b4b69db934df9cc15b1d6.tar.gz
godot-ebb7d2cdb7c5cd755f0b4b69db934df9cc15b1d6.tar.zst
godot-ebb7d2cdb7c5cd755f0b4b69db934df9cc15b1d6.zip
-WIP Exporter to Godot 3.0, only text scenes (no .scn) and still kind of buggy
Diffstat (limited to '')
-rw-r--r--tools/editor/editor_node.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/editor/editor_node.h b/tools/editor/editor_node.h
index ca5327abf..19cca549e 100644
--- a/tools/editor/editor_node.h
+++ b/tools/editor/editor_node.h
@@ -80,6 +80,7 @@
#include "fileserver/editor_file_server.h"
#include "editor_resource_preview.h"
+#include "editor_export_godot3.h"
#include "progress_dialog.h"
@@ -146,6 +147,7 @@ private:
EDIT_REDO,
EDIT_REVERT,
TOOLS_ORPHAN_RESOURCES,
+ TOOLS_EXPORT_GODOT3,
RESOURCE_NEW,
RESOURCE_LOAD,
RESOURCE_SAVE,
@@ -281,6 +283,9 @@ private:
HBoxContainer *search_bar;
LineEdit *search_box;
+ EditorExportGodot3 export_godot3;
+ FileDialog *export_godot3_dialog;
+
CreateDialog *create_dialog;
CallDialog *call_dialog;
@@ -573,6 +578,8 @@ private:
void _update_addon_config();
+ void _export_godot3_path(const String& p_path);
+
static void _file_access_close_error_notify(const String& p_str);
protected: