diff options
| author | Rémi Verschelde | 2016-09-19 09:08:12 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-09-19 09:08:12 +0200 |
| commit | eed5d878e83c837e1b9ecae3a8fa76ca8c1c8ba7 (patch) | |
| tree | 65c0e211c5abf4e73a09cb7544e79ea0a866353f /doc/base/classes.xml | |
| parent | 521b5bd90f5cbe5f069c6835be2438d91e530c1a (diff) | |
| download | godot-eed5d878e83c837e1b9ecae3a8fa76ca8c1c8ba7.tar.gz godot-eed5d878e83c837e1b9ecae3a8fa76ca8c1c8ba7.tar.zst godot-eed5d878e83c837e1b9ecae3a8fa76ca8c1c8ba7.zip | |
classref: Sync with current source
Diffstat (limited to 'doc/base/classes.xml')
| -rw-r--r-- | doc/base/classes.xml | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 7790ae555..83d7830f8 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -15221,8 +15221,12 @@ </argument> <argument index="2" name="ssl_validate_domain" type="bool" default="true"> </argument> + <argument index="3" name="method" type="int" default="0"> + </argument> + <argument index="4" name="request_data" type="String" default=""""> + </argument> <description> - Make a HTTP GET request. The url is the complete url including "http://" or "https://" which will be parsed for a host and a port. + Make a HTTP request (by default GET, unless specified otherwise as method). The url is the complete url including "http://" or "https://" which will be parsed for a host and a port. The custom_headers are HTTP request headers which will be used. If User-Agent is not specified a Godot specific will be used. The ssl_validate_domain specifies if in case of HTTPS the server certificate should be verified. </description> @@ -15854,6 +15858,8 @@ </argument> <argument index="2" name="radius" type="float"> </argument> + <argument index="3" name="add_uv" type="bool" default="true"> + </argument> <description> Simple helper to draw an uvsphere, with given latitudes, longitude and radius. </description> @@ -17752,15 +17758,6 @@ Return tooltip hint for specified item index. </description> </method> - <method name="is_item_tooltip_enabled" qualifiers="const"> - <return type="bool"> - </return> - <argument index="0" name="idx" type="int"> - </argument> - <description> - Returns whether the tooptip is enabled for specified item index. - </description> - </method> <method name="get_max_columns" qualifiers="const"> <return type="int"> </return> @@ -17789,7 +17786,7 @@ </description> </method> <method name="get_v_scroll"> - <return type="VScrollBar"> + <return type="Object"> </return> <description> Returns the current vertical scroll bar for the List. @@ -17813,6 +17810,15 @@ Returns whether or not the item at the specified index is selectable. </description> </method> + <method name="is_item_tooltip_enabled" qualifiers="const"> + <return type="bool"> + </return> + <argument index="0" name="idx" type="int"> + </argument> + <description> + Returns whether the tooptip is enabled for specified item index. + </description> + </method> <method name="is_same_column_width" qualifiers="const"> <return type="int"> </return> |
