mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Completed the support for plugins! It is not possible to add plugins.
Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
This commit is contained in:
parent
a97c1ca8f9
commit
6fc1c3a4d1
50 changed files with 2070 additions and 706 deletions
|
|
@ -40,17 +40,10 @@ class EditorSettingsDialog : public AcceptDialog {
|
|||
|
||||
|
||||
|
||||
ConfirmationDialog *install_confirm;
|
||||
bool updating;
|
||||
ConfirmationDialog *plugin_setting;
|
||||
String plugin_setting_edit;
|
||||
|
||||
RichTextLabel *plugin_description;
|
||||
|
||||
TabContainer *tabs;
|
||||
|
||||
Button *rescan_plugins;
|
||||
Tree *plugins;
|
||||
LineEdit *search_box;
|
||||
ToolButton *clear_button;
|
||||
SectionedPropertyEditor *property_editor;
|
||||
|
|
@ -60,18 +53,11 @@ class EditorSettingsDialog : public AcceptDialog {
|
|||
virtual void cancel_pressed();
|
||||
virtual void ok_pressed();
|
||||
|
||||
void _plugin_edited();
|
||||
|
||||
void _plugin_settings(Object *p_obj,int p_cell,int p_index);
|
||||
void _settings_changed();
|
||||
void _settings_save();
|
||||
|
||||
void _plugin_install();
|
||||
|
||||
void _notification(int p_what);
|
||||
|
||||
void _rescan_plugins();
|
||||
void _update_plugins();
|
||||
|
||||
void _clear_search_box();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue