Merge pull request #23673 from marcelofg55/export_path_3

Export Path now has a folder icon to select the path
This commit is contained in:
Rémi Verschelde
2018-12-06 15:33:04 +01:00
committed by GitHub
4 changed files with 53 additions and 12 deletions

View File

@ -106,6 +106,7 @@ class EditorPropertyPath : public EditorProperty {
Vector<String> extensions;
bool folder;
bool global;
bool save_mode;
EditorFileDialog *dialog;
LineEdit *path;
Button *path_edit;
@ -120,6 +121,7 @@ protected:
public:
void setup(const Vector<String> &p_extensions, bool p_folder, bool p_global);
void set_save_mode();
virtual void update_property();
EditorPropertyPath();
};