mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
new file dialog!
-ItemList control for easier lists/thumbnails -New file dialog, with support for thumbnails, favorites, recent places, etc -Moved .fscache out of the project, no more bugs due to committed/pulled .fscache! -Dir dialog now sorts directories
This commit is contained in:
parent
07a466f6e6
commit
9acab32daa
75 changed files with 2219 additions and 214 deletions
|
|
@ -394,7 +394,7 @@ ParticlesEditor::ParticlesEditor() {
|
|||
add_child(err_dialog);
|
||||
|
||||
|
||||
emission_file_dialog = memnew( FileDialog );
|
||||
emission_file_dialog = memnew( EditorFileDialog );
|
||||
add_child(emission_file_dialog);
|
||||
emission_file_dialog->connect("file_selected",this,"_resource_seleted");
|
||||
emission_tree_dialog = memnew( SceneTreeDialog );
|
||||
|
|
@ -410,7 +410,7 @@ ParticlesEditor::ParticlesEditor() {
|
|||
emission_file_dialog->add_filter("*."+extensions[i]+" ; "+extensions[i].to_upper());
|
||||
}
|
||||
|
||||
emission_file_dialog->set_mode(FileDialog::MODE_OPEN_FILE);
|
||||
emission_file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
||||
|
||||
//options->set_anchor(MARGIN_LEFT,Control::ANCHOR_END);
|
||||
//options->set_anchor(MARGIN_RIGHT,Control::ANCHOR_END);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue