diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-07-18 16:57:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 16:57:37 +0200 |
commit | 72194ceededdf9472b2f8398581fa5aeb6a20cc1 (patch) | |
tree | 9e754ea86421be1e2c5224f6c2d0b18f0e500525 /tools | |
parent | e91bd708d91fba94b97eb6bebea5752e85d8debf (diff) | |
parent | edf7082326526d76bfda095daa99e56317e30803 (diff) |
Merge pull request #5778 from volzhs/import-3d-scene-tscn
Change default extension to .tscn when import 3d scene
Diffstat (limited to 'tools')
-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); |