feat: updated engine version to 4.4-rc1
This commit is contained in:
parent
ee00efde1f
commit
21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions
|
|
@ -32,6 +32,7 @@
|
|||
#define EDITOR_PLUGIN_H
|
||||
|
||||
#include "core/io/config_file.h"
|
||||
#include "editor/plugins/editor_context_menu_plugin.h"
|
||||
#include "scene/3d/camera_3d.h"
|
||||
#include "scene/gui/control.h"
|
||||
|
||||
|
|
@ -41,6 +42,7 @@ class PopupMenu;
|
|||
class EditorDebuggerPlugin;
|
||||
class EditorExport;
|
||||
class EditorExportPlugin;
|
||||
class EditorExportPlatform;
|
||||
class EditorImportPlugin;
|
||||
class EditorInspectorPlugin;
|
||||
class EditorInterface;
|
||||
|
|
@ -179,8 +181,8 @@ public:
|
|||
virtual void forward_3d_draw_over_viewport(Control *p_overlay);
|
||||
virtual void forward_3d_force_draw_over_viewport(Control *p_overlay);
|
||||
|
||||
virtual String get_name() const;
|
||||
virtual const Ref<Texture2D> get_icon() const;
|
||||
virtual String get_plugin_name() const;
|
||||
virtual const Ref<Texture2D> get_plugin_icon() const;
|
||||
virtual String get_plugin_version() const;
|
||||
virtual void set_plugin_version(const String &p_version);
|
||||
virtual bool has_main_screen() const;
|
||||
|
|
@ -224,6 +226,9 @@ public:
|
|||
void add_export_plugin(const Ref<EditorExportPlugin> &p_exporter);
|
||||
void remove_export_plugin(const Ref<EditorExportPlugin> &p_exporter);
|
||||
|
||||
void add_export_platform(const Ref<EditorExportPlatform> &p_platform);
|
||||
void remove_export_platform(const Ref<EditorExportPlatform> &p_platform);
|
||||
|
||||
void add_node_3d_gizmo_plugin(const Ref<EditorNode3DGizmoPlugin> &p_gizmo_plugin);
|
||||
void remove_node_3d_gizmo_plugin(const Ref<EditorNode3DGizmoPlugin> &p_gizmo_plugin);
|
||||
|
||||
|
|
@ -245,6 +250,9 @@ public:
|
|||
void add_resource_conversion_plugin(const Ref<EditorResourceConversionPlugin> &p_plugin);
|
||||
void remove_resource_conversion_plugin(const Ref<EditorResourceConversionPlugin> &p_plugin);
|
||||
|
||||
void add_context_menu_plugin(EditorContextMenuPlugin::ContextMenuSlot p_slot, const Ref<EditorContextMenuPlugin> &p_plugin);
|
||||
void remove_context_menu_plugin(const Ref<EditorContextMenuPlugin> &p_plugin);
|
||||
|
||||
void enable_plugin();
|
||||
void disable_plugin();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue