classref: Sync with current source
This commit is contained in:
parent
521b5bd90f
commit
eed5d878e8
1 changed files with 17 additions and 11 deletions
|
@ -15221,8 +15221,12 @@
|
||||||
</argument>
|
</argument>
|
||||||
<argument index="2" name="ssl_validate_domain" type="bool" default="true">
|
<argument index="2" name="ssl_validate_domain" type="bool" default="true">
|
||||||
</argument>
|
</argument>
|
||||||
|
<argument index="3" name="method" type="int" default="0">
|
||||||
|
</argument>
|
||||||
|
<argument index="4" name="request_data" type="String" default="""">
|
||||||
|
</argument>
|
||||||
<description>
|
<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 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.
|
The ssl_validate_domain specifies if in case of HTTPS the server certificate should be verified.
|
||||||
</description>
|
</description>
|
||||||
|
@ -15854,6 +15858,8 @@
|
||||||
</argument>
|
</argument>
|
||||||
<argument index="2" name="radius" type="float">
|
<argument index="2" name="radius" type="float">
|
||||||
</argument>
|
</argument>
|
||||||
|
<argument index="3" name="add_uv" type="bool" default="true">
|
||||||
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Simple helper to draw an uvsphere, with given latitudes, longitude and radius.
|
Simple helper to draw an uvsphere, with given latitudes, longitude and radius.
|
||||||
</description>
|
</description>
|
||||||
|
@ -17752,15 +17758,6 @@
|
||||||
Return tooltip hint for specified item index.
|
Return tooltip hint for specified item index.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</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">
|
<method name="get_max_columns" qualifiers="const">
|
||||||
<return type="int">
|
<return type="int">
|
||||||
</return>
|
</return>
|
||||||
|
@ -17789,7 +17786,7 @@
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_v_scroll">
|
<method name="get_v_scroll">
|
||||||
<return type="VScrollBar">
|
<return type="Object">
|
||||||
</return>
|
</return>
|
||||||
<description>
|
<description>
|
||||||
Returns the current vertical scroll bar for the List.
|
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.
|
Returns whether or not the item at the specified index is selectable.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</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">
|
<method name="is_same_column_width" qualifiers="const">
|
||||||
<return type="int">
|
<return type="int">
|
||||||
</return>
|
</return>
|
||||||
|
|
Loading…
Reference in a new issue