mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	 6fc1c3a4d1
			
		
	
	
		6fc1c3a4d1
		
	
	
	
	
		
			
			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!
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			577 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef EDITORPLUGINSETTINGS_H
 | |
| #define EDITORPLUGINSETTINGS_H
 | |
| 
 | |
| 
 | |
| #include "scene/gui/dialogs.h"
 | |
| #include "property_editor.h"
 | |
| #include "optimized_save_dialog.h"
 | |
| #include "undo_redo.h"
 | |
| #include "editor_data.h"
 | |
| 
 | |
| class EditorPluginSettings : public VBoxContainer {
 | |
| 
 | |
| 	OBJ_TYPE(EditorPluginSettings,VBoxContainer);
 | |
| 
 | |
| 	Button* update_list;
 | |
| 	Tree *plugin_list;
 | |
| 	bool updating;
 | |
| 
 | |
| 
 | |
| 	void _plugin_activity_changed();
 | |
| protected:
 | |
| 
 | |
| 	void _notification(int p_what);
 | |
| 
 | |
| 	static void _bind_methods();
 | |
| 
 | |
| 
 | |
| public:
 | |
| 
 | |
| 	void update_plugins();
 | |
| 
 | |
| 	EditorPluginSettings();
 | |
| };
 | |
| 
 | |
| #endif // EDITORPLUGINSETTINGS_H
 |