diff options
author | George Marques <george@gmarqu.es> | 2016-06-23 18:08:41 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2016-06-23 18:08:41 -0300 |
commit | 6776fa63de4d96f043c1e970ee366a865d46da27 (patch) | |
tree | e6feed6e61dda8b9f09a5f87b789a438226dd193 /doc | |
parent | b06d235ce8634167cc1c37814f915e06ec0fa326 (diff) |
Add docs for String and CanvasItem
Diffstat (limited to 'doc')
-rw-r--r-- | doc/base/classes.xml | 78 |
1 files changed, 58 insertions, 20 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 808bf20c25..5ccc540422 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -7059,8 +7059,11 @@ Draw a textured rectangle region at a given position, optionally modulated by a color. Transpose swaps the x and y coordinates when reading the texture. </description> </method> - <method name="edit_get" qualifiers="const"> + <method name="edit_get_state" qualifiers="const"> + <return type="Variant"> + </return> <description> + Used for editing, returns an opaque value representing the transform state. </description> </method> <method name="edit_rotate"> @@ -7080,7 +7083,7 @@ <argument index="0" name="state" type="Variant"> </argument> <description> - Used for editing, returns an opaque value representing the transform state. + Set the transform state of this CanvasItem. For [Node2D], this is an [Array] with (in order) a [Vector2] for position, a float for rotation and another [Vector2] for scale. For [Control] this is a [Rect2] with the position and size. </description> </method> <method name="get_blend_mode" qualifiers="const"> @@ -7094,6 +7097,7 @@ <return type="RID"> </return> <description> + Return the [RID] of the [World2D] canvas where this item is in. </description> </method> <method name="get_canvas_item" qualifiers="const"> @@ -7107,55 +7111,63 @@ <return type="Matrix32"> </return> <description> + Get the transform matrix of this item's canvas. </description> </method> <method name="get_global_mouse_pos" qualifiers="const"> <return type="Vector2"> </return> <description> + Get the global position of the mouse. </description> </method> <method name="get_global_transform" qualifiers="const"> <return type="Matrix32"> </return> <description> + Get the global transform matrix of this item. </description> </method> <method name="get_global_transform_with_canvas" qualifiers="const"> <return type="Matrix32"> </return> <description> + Get the global transform matrix of this item in relation to the canvas. </description> </method> <method name="get_item_and_children_rect" qualifiers="const"> <return type="Rect2"> </return> <description> + Get a [Rect2] with the boundaries of this item and its children. </description> </method> <method name="get_item_rect" qualifiers="const"> <return type="Rect2"> </return> <description> - Return a rect containing the editable contents of the item. + Return a rect containing the editable boundaries of the item. </description> </method> <method name="get_light_mask" qualifiers="const"> <return type="int"> </return> <description> + Get this item's light mask number. </description> </method> <method name="get_local_mouse_pos" qualifiers="const"> <return type="Vector2"> </return> <description> + Get the mouse position relative to this item's position. </description> </method> <method name="get_material" qualifiers="const"> <return type="CanvasItemMaterial"> </return> <description> + Get the material of this item. </description> </method> <method name="get_opacity" qualifiers="const"> @@ -7176,30 +7188,35 @@ <return type="Matrix32"> </return> <description> + Get the transform matrix of this item. </description> </method> <method name="get_use_parent_material" qualifiers="const"> <return type="bool"> </return> <description> + Get whether this item uses its parent's material. </description> </method> <method name="get_viewport_rect" qualifiers="const"> <return type="Rect2"> </return> <description> + Get the viewport's boundaries as a [Rect2]. </description> </method> <method name="get_viewport_transform" qualifiers="const"> <return type="Matrix32"> </return> <description> + Get this item's transform in relation to the viewport. </description> </method> <method name="get_world_2d" qualifiers="const"> <return type="Object"> </return> <description> + Get the [World2D] where this item is in. </description> </method> <method name="hide"> @@ -7241,13 +7258,14 @@ <argument index="0" name="event" type="InputEvent"> </argument> <description> + Takes a global input event and convert to this item's coordinate system. </description> </method> <method name="set_as_toplevel"> <argument index="0" name="enable" type="bool"> </argument> <description> - Set as toplevel. This means that it will not inherit transform from parent canvas items. + Set as top level. This means that it will not inherit transform from parent canvas items. </description> </method> <method name="set_blend_mode"> @@ -7261,25 +7279,28 @@ <argument index="0" name="enable" type="bool"> </argument> <description> - Sets whether the canvas item is drawn behind its parent. + Set whether the canvas item is drawn behind its parent. </description> </method> <method name="set_hidden"> <argument index="0" name="hidden" type="bool"> </argument> <description> + Set whether this item should be hidden or not. Note that no matter what is set here this item won't be shown if its parent or grandparents nodes are also hidden. A hidden CanvasItem make all children hidden too. </description> </method> <method name="set_light_mask"> <argument index="0" name="light_mask" type="int"> </argument> <description> + Set the ligtht mask number of this item. </description> </method> <method name="set_material"> <argument index="0" name="material" type="CanvasItemMaterial"> </argument> <description> + Set the material of this item. </description> </method> <method name="set_opacity"> @@ -7300,6 +7321,7 @@ <argument index="0" name="enable" type="bool"> </argument> <description> + Set whether or not this item should use its parent's material. </description> </method> <method name="show"> @@ -7309,7 +7331,7 @@ </method> <method name="update"> <description> - Queue the CanvasItem for update. NOTIFICATION_DRAW will be called on idle time to request redraw. + Queue the CanvasItem for update. [code]NOTIFICATION_DRAW[/code] will be called on idle time to request redraw. </description> </method> </methods> @@ -37540,12 +37562,14 @@ A similar effect may be achieved moving this node's descendants. <return type="String"> </return> <description> + Return a copy of the string with special characters escaped using the C language standard. </description> </method> <method name="c_unescape"> <return type="String"> </return> <description> + Return a copy of the string with escaped characters replaced by their meanings according to the C language standard. </description> </method> <method name="capitalize"> @@ -37577,6 +37601,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="text" type="String"> </argument> <description> + Return true if the strings ends with the given string. </description> </method> <method name="erase"> @@ -37585,6 +37610,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="1" name="chars" type="int"> </argument> <description> + Erase [code]chars[/code] characters from the string starting from [code]pos[/code]. </description> </method> <method name="extension"> @@ -37684,7 +37710,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="text" type="String"> </argument> <description> - Checked whether this string is a subsequence of the given string. + Check whether this string is a subsequence of the given string. </description> </method> <method name="is_subsequence_ofi"> @@ -37693,7 +37719,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="text" type="String"> </argument> <description> - Checked whether this string is a subsequence of the given string, without considering case. + Check whether this string is a subsequence of the given string, without considering case. </description> </method> <method name="is_valid_float"> @@ -37714,6 +37740,7 @@ A similar effect may be achieved moving this node's descendants. <return type="bool"> </return> <description> + Check whether the string is a valid identifier. As is common in programming languages, a valid identifier may contain only letters, digits and underscores (_) and the first character may not be a digit. </description> </method> <method name="is_valid_integer"> @@ -37734,6 +37761,7 @@ A similar effect may be achieved moving this node's descendants. <return type="String"> </return> <description> + Return a copy of the string with special characters escaped using the JSON standard. </description> </method> <method name="left"> @@ -37774,12 +37802,14 @@ A similar effect may be achieved moving this node's descendants. <return type="RawArray"> </return> <description> + Return the MD5 hash of the string as an array of bytes. </description> </method> <method name="md5_text"> <return type="String"> </return> <description> + Return the MD5 hash of the string as a string. </description> </method> <method name="nocasecmp_to"> @@ -37797,7 +37827,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="at" type="int"> </argument> <description> - Return the character code at position "at". + Return the character code at position [code]at[/code]. </description> </method> <method name="pad_decimals"> @@ -37806,6 +37836,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="digits" type="int"> </argument> <description> + Format a number to have an exact number of [code]digits[/code] after the decimal point. </description> </method> <method name="pad_zeros"> @@ -37814,18 +37845,21 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="digits" type="int"> </argument> <description> + Format a number to have an exact number of [code]digits[/code] before the decimal point. </description> </method> <method name="percent_decode"> <return type="String"> </return> <description> + Decode a percent-encoded string. See [method percent_encode]. </description> </method> <method name="percent_encode"> <return type="String"> </return> <description> + Percent-encode a string. This is meant to encode parameters in a URL when sending a HTTP GET request and bodies of form-urlencoded POST request. </description> </method> <method name="plus_file"> @@ -37834,6 +37868,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="0" name="file" type="String"> </argument> <description> + If the string is a path, this concatenates [code]file[/code] at the end of the string as a subpath. E.g. [code]"this/is".plus_file("path") == "this/is/path"[/code]. </description> </method> <method name="replace"> @@ -37889,10 +37924,17 @@ A similar effect may be achieved moving this node's descendants. Return the right side of the string from a given position. </description> </method> + <method name="sha256_buffer"> + <return type="RawArray"> + </return> + <description> + </description> + </method> <method name="sha256_text"> <return type="String"> </return> <description> + Return the SHA-256 hash of the string as a string. </description> </method> <method name="similarity"> @@ -37912,7 +37954,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="1" name="allow_empty" type="bool" default="True"> </argument> <description> - Split the string by a divisor string, return an array of the substrings. Example "One,Two,Three" will return \["One","Two","Three"\] if split by ",". + Split the string by a divisor string, return an array of the substrings. Example "One,Two,Three" will return ["One","Two","Three"] if split by ",". </description> </method> <method name="split_floats"> @@ -37923,7 +37965,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="1" name="allow_empty" type="bool" default="True"> </argument> <description> - Split the string in floats by using a divisor string, return an array of the substrings. Example "1,2.5,3" will return \[1,2.5,3\] if split by ",". + Split the string in floats by using a divisor string, return an array of the substrings. Example "1,2.5,3" will return [1,2.5,3] if split by ",". </description> </method> <method name="strip_edges"> @@ -37945,7 +37987,7 @@ A similar effect may be achieved moving this node's descendants. <argument index="1" name="len" type="int"> </argument> <description> - Return part of the string from "from", with length "len". + Return part of the string from the position [code]from[/code], with length [code]len[/code]. </description> </method> <method name="to_ascii"> @@ -37959,14 +38001,14 @@ A similar effect may be achieved moving this node's descendants. <return type="float"> </return> <description> - Convert a string, containing a decimal number, into a float. + Convert a string, containing a decimal number, into a [code]float[/code]. </description> </method> <method name="to_int"> <return type="int"> </return> <description> - Convert a string, containing an integer number, into an int. + Convert a string, containing an integer number, into an [code]int[/code]. </description> </method> <method name="to_lower"> @@ -37994,14 +38036,14 @@ A similar effect may be achieved moving this node's descendants. <return type="String"> </return> <description> - Perform XML escaping on the string. + Return a copy of the string with special characters escaped using the XML standard. </description> </method> <method name="xml_unescape"> <return type="String"> </return> <description> - Perform XML un-escaping of the string. + Return a copy of the string with escaped characters replaced by their meanings according to the XML standard. </description> </method> </methods> @@ -39262,8 +39304,6 @@ 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_existing" type="Color"> - </theme_item> <theme_item name="completion_lines" type="int"> </theme_item> <theme_item name="completion_max_width" type="int"> @@ -39272,8 +39312,6 @@ 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" type="StyleBox"> - </theme_item> <theme_item name="current_line_color" type="Color"> </theme_item> <theme_item name="focus" type="StyleBox"> |