diff options
Diffstat (limited to 'tools/editor/scene_tree_dock.h')
| -rw-r--r-- | tools/editor/scene_tree_dock.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/editor/scene_tree_dock.h b/tools/editor/scene_tree_dock.h index b1c53d2ff9..d7c5a34162 100644 --- a/tools/editor/scene_tree_dock.h +++ b/tools/editor/scene_tree_dock.h @@ -62,6 +62,7 @@ class SceneTreeDock : public VBoxContainer {  		TOOL_MOVE_DOWN,  		TOOL_DUPLICATE,  		TOOL_REPARENT, +		TOOL_NEW_SCENE_FROM,  		TOOL_MULTI_EDIT,  		TOOL_ERASE,  		TOOL_BUTTON_MAX @@ -90,6 +91,7 @@ class SceneTreeDock : public VBoxContainer {  	ReparentDialog *reparent_dialog;  	EditorFileDialog *file;  	EditorSubScene *import_subscene_dialog; +	EditorFileDialog *new_scene_from_dialog;  	bool first_enter; @@ -119,6 +121,8 @@ class SceneTreeDock : public VBoxContainer {  	void _import_subscene(); +	void _new_scene_from(String p_file); +  	bool _validate_no_foreign();  	void _selection_changed();  |