mirror of
https://github.com/godotengine/godot.git
synced 2025-02-17 16:20:53 +00:00
Sync classes reference template with current code base
This commit is contained in:
parent
52eebdc001
commit
c69ea708fa
@ -5182,8 +5182,26 @@
|
|||||||
Base class for Box containers. It arranges children controls vertically or horizontally, and rearranges them automatically when their minimum size changes.
|
Base class for Box containers. It arranges children controls vertically or horizontally, and rearranges them automatically when their minimum size changes.
|
||||||
</description>
|
</description>
|
||||||
<methods>
|
<methods>
|
||||||
|
<method name="get_alignment" qualifiers="const">
|
||||||
|
<return type="int">
|
||||||
|
</return>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="set_alignment">
|
||||||
|
<argument index="0" name="alignment" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<constants>
|
<constants>
|
||||||
|
<constant name="ALIGN_BEGIN" value="0">
|
||||||
|
</constant>
|
||||||
|
<constant name="ALIGN_CENTER" value="1">
|
||||||
|
</constant>
|
||||||
|
<constant name="ALIGN_END" value="2">
|
||||||
|
</constant>
|
||||||
</constants>
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
<class name="BoxShape" inherits="Shape" category="Core">
|
<class name="BoxShape" inherits="Shape" category="Core">
|
||||||
@ -13239,6 +13257,14 @@
|
|||||||
<description>
|
<description>
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="set_custom_mouse_cursor">
|
||||||
|
<argument index="0" name="image" type="Texture">
|
||||||
|
</argument>
|
||||||
|
<argument index="1" name="hotspot" type="Vector2" default="Vector2(0,0)">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<signals>
|
<signals>
|
||||||
<signal name="joy_connection_changed">
|
<signal name="joy_connection_changed">
|
||||||
@ -14375,7 +14401,7 @@
|
|||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_item_icon" qualifiers="const">
|
<method name="get_item_icon" qualifiers="const">
|
||||||
<return type="Tedture">
|
<return type="Texture">
|
||||||
</return>
|
</return>
|
||||||
<argument index="0" name="idx" type="int">
|
<argument index="0" name="idx" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
@ -14964,7 +14990,7 @@
|
|||||||
<constants>
|
<constants>
|
||||||
</constants>
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
<class name="Label" inherits="Range" category="Core">
|
<class name="Label" inherits="Control" category="Core">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Control that displays formatted text.
|
Control that displays formatted text.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
@ -15105,20 +15131,6 @@
|
|||||||
Return the restricted number of characters to display (as a percentage of the total text).
|
Return the restricted number of characters to display (as a percentage of the total text).
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="set_max_lines_visible">
|
|
||||||
<argument index="0" name="lines_visible" type="int">
|
|
||||||
</argument>
|
|
||||||
<description>
|
|
||||||
Restricts the number of lines to display. Set to -1 to disable.
|
|
||||||
</description>
|
|
||||||
</method>
|
|
||||||
<method name="get_max_lines_visible" qualifiers="const">
|
|
||||||
<return type="int">
|
|
||||||
</return>
|
|
||||||
<description>
|
|
||||||
Return the restricted number of lines to display. Returns -1 if unrestricted.
|
|
||||||
</description>
|
|
||||||
</method>
|
|
||||||
<method name="set_lines_skipped">
|
<method name="set_lines_skipped">
|
||||||
<argument index="0" name="lines_skipped" type="int">
|
<argument index="0" name="lines_skipped" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
@ -15133,6 +15145,20 @@
|
|||||||
Return the the number of lines to skipped before displaying.
|
Return the the number of lines to skipped before displaying.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="set_max_lines_visible">
|
||||||
|
<argument index="0" name="lines_visible" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
Restricts the number of lines to display. Set to -1 to disable.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="get_max_lines_visible" qualifiers="const">
|
||||||
|
<return type="int">
|
||||||
|
</return>
|
||||||
|
<description>
|
||||||
|
Return the restricted number of lines to display. Returns -1 if unrestricted.
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<constants>
|
<constants>
|
||||||
<constant name="ALIGN_LEFT" value="0">
|
<constant name="ALIGN_LEFT" value="0">
|
||||||
@ -15912,6 +15938,10 @@
|
|||||||
</method>
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
<constants>
|
<constants>
|
||||||
|
<constant name="NOTIFICATION_WM_MOUSE_ENTER" value="3">
|
||||||
|
</constant>
|
||||||
|
<constant name="NOTIFICATION_WM_MOUSE_EXIT" value="4">
|
||||||
|
</constant>
|
||||||
<constant name="NOTIFICATION_WM_FOCUS_IN" value="5">
|
<constant name="NOTIFICATION_WM_FOCUS_IN" value="5">
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="NOTIFICATION_WM_FOCUS_OUT" value="6">
|
<constant name="NOTIFICATION_WM_FOCUS_OUT" value="6">
|
||||||
@ -30272,6 +30302,12 @@
|
|||||||
Return the amount of bones in the skeleton.
|
Return the amount of bones in the skeleton.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="unparent_bone_and_rest">
|
||||||
|
<argument index="0" name="bone_idx" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="get_bone_rest" qualifiers="const">
|
<method name="get_bone_rest" qualifiers="const">
|
||||||
<return type="Transform">
|
<return type="Transform">
|
||||||
</return>
|
</return>
|
||||||
@ -30290,6 +30326,22 @@
|
|||||||
Set the rest transform for bone "bone_idx"
|
Set the rest transform for bone "bone_idx"
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="set_bone_disable_rest">
|
||||||
|
<argument index="0" name="bone_idx" type="int">
|
||||||
|
</argument>
|
||||||
|
<argument index="1" name="disable" type="bool">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
|
<method name="is_bone_rest_disabled" qualifiers="const">
|
||||||
|
<return type="bool">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="bone_idx" type="int">
|
||||||
|
</argument>
|
||||||
|
<description>
|
||||||
|
</description>
|
||||||
|
</method>
|
||||||
<method name="bind_child_node_to_bone">
|
<method name="bind_child_node_to_bone">
|
||||||
<argument index="0" name="bone_idx" type="int">
|
<argument index="0" name="bone_idx" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
|
Loading…
Reference in New Issue
Block a user