diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-27 23:37:47 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-27 23:37:47 +0100 |
commit | cb4c0c630f756a96d9657653405cb50a9c16090e (patch) | |
tree | 8d17a3006181a9ecef76d09e15be2fccbb381c1c /doc | |
parent | 9a406da44e9ffd37e2bf4b1874a1df58827d27ab (diff) |
doc: Sync classref with current source
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/EditorPlugin.xml | 24 | ||||
-rw-r--r-- | doc/classes/FileDialog.xml | 6 | ||||
-rw-r--r-- | doc/classes/ItemList.xml | 4 | ||||
-rw-r--r-- | doc/classes/Tree.xml | 4 | ||||
-rw-r--r-- | doc/classes/VisualServer.xml | 4 |
5 files changed, 35 insertions, 7 deletions
diff --git a/doc/classes/EditorPlugin.xml b/doc/classes/EditorPlugin.xml index 50f36c2c87..edd1f721b5 100644 --- a/doc/classes/EditorPlugin.xml +++ b/doc/classes/EditorPlugin.xml @@ -135,15 +135,20 @@ <description> </description> </method> - <method name="forward_draw_over_canvas" qualifiers="virtual"> + <method name="forward_draw_over_viewport" qualifiers="virtual"> <return type="void"> </return> - <argument index="0" name="canvas_xform" type="Transform2D"> + <argument index="0" name="overlay" type="Control"> </argument> - <argument index="1" name="canvas" type="Control"> + <description> + </description> + </method> + <method name="forward_force_draw_over_viewport" qualifiers="virtual"> + <return type="void"> + </return> + <argument index="0" name="overlay" type="Control"> </argument> <description> - This function is called every time the 2D canvas editor draws (which overlays over the edited scene). Drawing over the supplied control will draw over the edited scene. To convert from control coordinates to edited scene coordinates (including zoom and offset), a transform is also provided. If you require this control to be redraw, call [method update_canvas]. </description> </method> <method name="forward_spatial_gui_input" qualifiers="virtual"> @@ -297,6 +302,12 @@ This method is called after the editor saves the project or when it's closed. It asks the plugin to save edited external scenes/resources. </description> </method> + <method name="set_force_draw_over_forwarding_enabled"> + <return type="void"> + </return> + <description> + </description> + </method> <method name="set_input_event_forwarding_always_enabled"> <return type="void"> </return> @@ -322,11 +333,10 @@ Restore the plugin GUI layout saved by [method EditorPlugin.get_window_layout]. </description> </method> - <method name="update_canvas"> - <return type="void"> + <method name="update_overlays" qualifiers="const"> + <return type="int"> </return> <description> - Updates the control used to draw the edited scene over the 2D canvas. This is used together with [method forward_canvas_input_event]. </description> </method> </methods> diff --git a/doc/classes/FileDialog.xml b/doc/classes/FileDialog.xml index 7f6fc13758..0f7038238e 100644 --- a/doc/classes/FileDialog.xml +++ b/doc/classes/FileDialog.xml @@ -27,6 +27,12 @@ Clear all the added filters in the dialog. </description> </method> + <method name="deselect_items"> + <return type="void"> + </return> + <description> + </description> + </method> <method name="get_current_dir" qualifiers="const"> <return type="String"> </return> diff --git a/doc/classes/ItemList.xml b/doc/classes/ItemList.xml index 6e9ffb7f35..d10722d411 100644 --- a/doc/classes/ItemList.xml +++ b/doc/classes/ItemList.xml @@ -378,6 +378,10 @@ Fired when a multiple selection is altered on a list allowing multiple selection. </description> </signal> + <signal name="nothing_selected"> + <description> + </description> + </signal> <signal name="rmb_clicked"> <argument index="0" name="at_position" type="Vector2"> </argument> diff --git a/doc/classes/Tree.xml b/doc/classes/Tree.xml index 3d1144e81e..11bd3b3b86 100644 --- a/doc/classes/Tree.xml +++ b/doc/classes/Tree.xml @@ -405,6 +405,10 @@ Emitted instead of [code]item_selected[/code] when [code]select_mode[/code] is [code]SELECT_MULTI[/code]. </description> </signal> + <signal name="nothing_selected"> + <description> + </description> + </signal> </signals> <constants> <constant name="SELECT_SINGLE" value="0" enum="SelectMode"> diff --git a/doc/classes/VisualServer.xml b/doc/classes/VisualServer.xml index c84aad26a1..479c0606f2 100644 --- a/doc/classes/VisualServer.xml +++ b/doc/classes/VisualServer.xml @@ -817,6 +817,8 @@ <method name="draw"> <return type="void"> </return> + <argument index="0" name="swap_buffers" type="bool" default="true"> + </argument> <description> </description> </method> @@ -829,6 +831,8 @@ <method name="force_draw"> <return type="void"> </return> + <argument index="0" name="swap_buffers" type="bool" default="true"> + </argument> <description> </description> </method> |