diff options
Diffstat (limited to 'doc/base/classes.xml')
-rw-r--r-- | doc/base/classes.xml | 156 |
1 files changed, 116 insertions, 40 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 09554e6a98..4b5c424d4b 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -2517,12 +2517,6 @@ Return whether the animation has the loop flag set. </description> </method> - <method name="has_loop_interpolation" qualifiers="const"> - <return type="bool"> - </return> - <description> - </description> - </method> <method name="method_track_get_key_indices" qualifiers="const"> <return type="IntArray"> </return> @@ -2579,12 +2573,6 @@ Set a flag indicating that the animation must loop. This is uses for correct interpolation of animation cycles, and for hinting the player that it must restart the animation. </description> </method> - <method name="set_loop_interpolation"> - <argument index="0" name="enabled" type="bool"> - </argument> - <description> - </description> - </method> <method name="set_step"> <argument index="0" name="size_sec" type="float"> </argument> @@ -4685,6 +4673,12 @@ </description> </method> </methods> + <signals> + <signal name="atlas_changed"> + <description> + </description> + </signal> + </signals> <constants> </constants> </class> @@ -6994,6 +6988,12 @@ Set a custom transform for drawing. Anything drawn afterwards will be transformed by this. </description> </method> + <method name="draw_set_transform_matrix"> + <argument index="0" name="xform" type="Matrix32"> + </argument> + <description> + </description> + </method> <method name="draw_string"> <argument index="0" name="font" type="Font"> </argument> @@ -8544,6 +8544,11 @@ Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="color" type="Color"> </argument> @@ -17192,6 +17197,11 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Insert a new int at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="integer" type="int"> </argument> @@ -17497,6 +17507,13 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) <description> </description> </method> + <method name="get_selected_items"> + <return type="IntArray"> + </return> + <description> + Returns a list of selected indexes. + </description> + </method> <method name="is_item_disabled" qualifiers="const"> <return type="bool"> </return> @@ -18902,6 +18919,34 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Clear the [LineEdit] text. </description> </method> + <method name="cursor_get_blink_enabled" qualifiers="const"> + <return type="bool"> + </return> + <description> + Gets whether the line edit caret is blinking. + </description> + </method> + <method name="cursor_get_blink_speed" qualifiers="const"> + <return type="float"> + </return> + <description> + Gets the line edit caret blink speed. + </description> + </method> + <method name="cursor_set_blink_enabled"> + <argument index="0" name="enable" type="bool"> + </argument> + <description> + Set the line edit caret to blink. + </description> + </method> + <method name="cursor_set_blink_speed"> + <argument index="0" name="blink_speed" type="float"> + </argument> + <description> + Set the line edit caret blink speed. Cannot be less then or equal to 0. + </description> + </method> <method name="get_align" qualifiers="const"> <return type="int"> </return> @@ -18981,34 +19026,6 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Set the cursor position inside the [LineEdit], causing it to scroll if needed. </description> </method> - <method name="cursor_set_blink_enabled"> - <argument index="0" name="enable" type="bool"> - </argument> - <description> - Set the line edit caret to blink. - </description> - </method> - <method name="cursor_get_blink_enabled" qualifiers="const"> - <return type="float"> - </return> - <description> - Gets whether the line edit caret is blinking. - </description> - </method> - <method name="cursor_set_blink_speed"> - <argument index="0" name="blink_speed" type="float"> - </argument> - <description> - Set the line edit caret blink speed. Cannot be less then or equal to 0. - </description> - </method> - <method name="cursor_get_blink_speed" qualifiers="const"> - <return type="float"> - </return> - <description> - Gets the line edit caret blink speed. - </description> - </method> <method name="set_editable"> <argument index="0" name="enabled" type="bool"> </argument> @@ -24026,6 +24043,12 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Return the mirroring of the ParallaxLayer. </description> </method> + <method name="get_motion_offset" qualifiers="const"> + <return type="Vector2"> + </return> + <description> + </description> + </method> <method name="get_motion_scale" qualifiers="const"> <return type="Vector2"> </return> @@ -24040,6 +24063,12 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Set the mirroring of the ParallaxLayer. If an axis is set to 0 then that axis will have no mirroring. </description> </method> + <method name="set_motion_offset"> + <argument index="0" name="offset" type="Vector2"> + </argument> + <description> + </description> + </method> <method name="set_motion_scale"> <argument index="0" name="scale" type="Vector2"> </argument> @@ -24872,6 +24901,12 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) </description> </method> </methods> + <signals> + <signal name="texture_changed"> + <description> + </description> + </signal> + </signals> <constants> </constants> </class> @@ -30279,6 +30314,11 @@ A similar effect may be achieved moving this node's descendants. Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="byte" type="int"> </argument> @@ -30657,6 +30697,11 @@ A similar effect may be achieved moving this node's descendants. Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="value" type="float"> </argument> @@ -36484,6 +36529,10 @@ A similar effect may be achieved moving this node's descendants. <description> </description> </signal> + <signal name="texture_changed"> + <description> + </description> + </signal> </signals> <constants> </constants> @@ -38120,6 +38169,11 @@ A similar effect may be achieved moving this node's descendants. Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="string" type="String"> </argument> @@ -38470,6 +38524,12 @@ A similar effect may be achieved moving this node's descendants. </description> </method> </methods> + <signals> + <signal name="texture_changed"> + <description> + </description> + </signal> + </signals> <constants> </constants> </class> @@ -39332,6 +39392,10 @@ A similar effect may be achieved moving this node's descendants. </theme_item> <theme_item name="completion" type="StyleBox"> </theme_item> + <theme_item name="completion_background_color" type="Color"> + </theme_item> + <theme_item name="completion_existing_color" type="Color"> + </theme_item> <theme_item name="completion_lines" type="int"> </theme_item> <theme_item name="completion_max_width" type="int"> @@ -39340,6 +39404,8 @@ A similar effect may be achieved moving this node's descendants. </theme_item> <theme_item name="completion_scroll_width" type="int"> </theme_item> + <theme_item name="completion_selected_color" type="Color"> + </theme_item> <theme_item name="current_line_color" type="Color"> </theme_item> <theme_item name="focus" type="StyleBox"> @@ -43043,6 +43109,11 @@ A similar effect may be achieved moving this node's descendants. Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="vector2" type="Vector2"> </argument> @@ -43334,6 +43405,11 @@ A similar effect may be achieved moving this node's descendants. Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). </description> </method> + <method name="invert"> + <description> + Reverse the order of the elements in the array (so first element will now be the last). + </description> + </method> <method name="push_back"> <argument index="0" name="vector3" type="Vector3"> </argument> |