Sync classref with current source

This commit is contained in:
Rémi Verschelde
2018-03-28 11:50:20 +02:00
parent c57d25d573
commit fd3e774be5
45 changed files with 772 additions and 456 deletions
+16
View File
@@ -19,6 +19,8 @@ Used by the editor to extend its functionality.
Member Functions
----------------
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`add_autoload_singleton<class_EditorPlugin_add_autoload_singleton>` **(** :ref:`String<class_string>` name, :ref:`String<class_string>` path **)** |
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :ref:`ToolButton<class_toolbutton>` | :ref:`add_control_to_bottom_panel<class_EditorPlugin_add_control_to_bottom_panel>` **(** :ref:`Control<class_control>` control, :ref:`String<class_string>` title **)** |
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -78,6 +80,8 @@ Member Functions
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`queue_save_layout<class_EditorPlugin_queue_save_layout>` **(** **)** const |
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`remove_autoload_singleton<class_EditorPlugin_remove_autoload_singleton>` **(** :ref:`String<class_string>` name **)** |
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`remove_control_from_bottom_panel<class_EditorPlugin_remove_control_from_bottom_panel>` **(** :ref:`Control<class_control>` control **)** |
+------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`remove_control_from_container<class_EditorPlugin_remove_control_from_container>` **(** :ref:`int<class_int>` container, :ref:`Control<class_control>` control **)** |
@@ -166,6 +170,12 @@ Plugins are used by the editor to extend functionality. The most common types of
Member Function Description
---------------------------
.. _class_EditorPlugin_add_autoload_singleton:
- void **add_autoload_singleton** **(** :ref:`String<class_string>` name, :ref:`String<class_string>` path **)**
Add a script at ``path`` to the Autoload list as ``name``.
.. _class_EditorPlugin_add_control_to_bottom_panel:
- :ref:`ToolButton<class_toolbutton>` **add_control_to_bottom_panel** **(** :ref:`Control<class_control>` control, :ref:`String<class_string>` title **)**
@@ -336,6 +346,12 @@ Remember that you have to manage the visibility of all your editor controls manu
Queue save the project's editor layout.
.. _class_EditorPlugin_remove_autoload_singleton:
- void **remove_autoload_singleton** **(** :ref:`String<class_string>` name **)**
Remove an Autoload ``name`` from the list.
.. _class_EditorPlugin_remove_control_from_bottom_panel:
- void **remove_control_from_bottom_panel** **(** :ref:`Control<class_control>` control **)**