From edf7082326526d76bfda095daa99e56317e30803 Mon Sep 17 00:00:00 2001 From: volzhs Date: Mon, 18 Jul 2016 23:28:13 +0900 Subject: [PATCH] Change default extension to .tscn when import 3d scene --- tools/editor/io_plugins/editor_scene_import_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/io_plugins/editor_scene_import_plugin.cpp b/tools/editor/io_plugins/editor_scene_import_plugin.cpp index e24412d4ef..61e92309eb 100644 --- a/tools/editor/io_plugins/editor_scene_import_plugin.cpp +++ b/tools/editor/io_plugins/editor_scene_import_plugin.cpp @@ -756,7 +756,7 @@ void EditorSceneImportDialog::_import(bool p_and_open) { } - String save_file = save_path->get_text().plus_file(import_path->get_text().get_file().basename()+".scn"); + String save_file = save_path->get_text().plus_file(import_path->get_text().get_file().basename()+".tscn"); print_line("Saving to: "+save_file);