diff options
author | volzhs <volzhs@gmail.com> | 2016-07-18 23:28:13 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2016-07-18 23:28:13 +0900 |
commit | edf7082326526d76bfda095daa99e56317e30803 (patch) | |
tree | 11bc597a73c6d32cb1e36285ff7d42710f9470c3 | |
parent | c328693e837f5899b24504caef5a9ee5e4d4cb4e (diff) |
Change default extension to .tscn when import 3d scene
-rw-r--r-- | tools/editor/io_plugins/editor_scene_import_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |