aboutsummaryrefslogtreecommitdiff
path: root/doc/classes/TouchScreenButton.xml
diff options
context:
space:
mode:
authorRémi Verschelde2017-11-24 18:10:32 +0100
committerRémi Verschelde2017-11-24 18:10:32 +0100
commit92f07fefcd334686e81f56555d83530ae6741c2b (patch)
tree8fa1e89cfc407ed7ad9913e27845a72a7eb46598 /doc/classes/TouchScreenButton.xml
parent31f62f53c516360dcf8688141a5f8a0aebada431 (diff)
downloadgodot-92f07fefcd334686e81f56555d83530ae6741c2b.tar.gz
godot-92f07fefcd334686e81f56555d83530ae6741c2b.tar.zst
godot-92f07fefcd334686e81f56555d83530ae6741c2b.zip
doc: Remove setters and getters now exposed via properties/members
Diffstat (limited to 'doc/classes/TouchScreenButton.xml')
-rw-r--r--doc/classes/TouchScreenButton.xml141
1 files changed, 0 insertions, 141 deletions
diff --git a/doc/classes/TouchScreenButton.xml b/doc/classes/TouchScreenButton.xml
index 975cef997..76d9af232 100644
--- a/doc/classes/TouchScreenButton.xml
+++ b/doc/classes/TouchScreenButton.xml
@@ -11,54 +11,6 @@
<demos>
</demos>
<methods>
- <method name="get_action" qualifiers="const">
- <return type="String">
- </return>
- <description>
- Returns the button's action.
- </description>
- </method>
- <method name="get_bitmask" qualifiers="const">
- <return type="BitMap">
- </return>
- <description>
- Returns the button's bitmask.
- </description>
- </method>
- <method name="get_shape" qualifiers="const">
- <return type="Shape2D">
- </return>
- <description>
- Returns the button's shape.
- </description>
- </method>
- <method name="get_texture" qualifiers="const">
- <return type="Texture">
- </return>
- <description>
- Returns the button's texture for the normal state.
- </description>
- </method>
- <method name="get_texture_pressed" qualifiers="const">
- <return type="Texture">
- </return>
- <description>
- Returns the button's texture for the pressed state.
- </description>
- </method>
- <method name="get_visibility_mode" qualifiers="const">
- <return type="int" enum="TouchScreenButton.VisibilityMode">
- </return>
- <description>
- Sets the button's visibility mode. See [code]VISIBILITY_*[/code] constants.
- </description>
- </method>
- <method name="is_passby_press_enabled" qualifiers="const">
- <return type="bool">
- </return>
- <description>
- </description>
- </method>
<method name="is_pressed" qualifiers="const">
<return type="bool">
</return>
@@ -66,99 +18,6 @@
Returns [code]true[/code] if this button is currently pressed.
</description>
</method>
- <method name="is_shape_centered" qualifiers="const">
- <return type="bool">
- </return>
- <description>
- </description>
- </method>
- <method name="is_shape_visible" qualifiers="const">
- <return type="bool">
- </return>
- <description>
- </description>
- </method>
- <method name="set_action">
- <return type="void">
- </return>
- <argument index="0" name="action" type="String">
- </argument>
- <description>
- Sets the button's action.
- </description>
- </method>
- <method name="set_bitmask">
- <return type="void">
- </return>
- <argument index="0" name="bitmask" type="BitMap">
- </argument>
- <description>
- Sets the button's [BitMap] bitmask.
- </description>
- </method>
- <method name="set_passby_press">
- <return type="void">
- </return>
- <argument index="0" name="enabled" type="bool">
- </argument>
- <description>
- If [code]true[/code] passby presses are enabled for this button.
- </description>
- </method>
- <method name="set_shape">
- <return type="void">
- </return>
- <argument index="0" name="shape" type="Shape2D">
- </argument>
- <description>
- Sets the button's shape.
- </description>
- </method>
- <method name="set_shape_centered">
- <return type="void">
- </return>
- <argument index="0" name="bool" type="bool">
- </argument>
- <description>
- If [code]true[/code] the button's shape is centered.
- </description>
- </method>
- <method name="set_shape_visible">
- <return type="void">
- </return>
- <argument index="0" name="bool" type="bool">
- </argument>
- <description>
- If [code]true[/code] the button's shape is visible.
- </description>
- </method>
- <method name="set_texture">
- <return type="void">
- </return>
- <argument index="0" name="texture" type="Texture">
- </argument>
- <description>
- Sets the button's [Texture] for the normal state.
- </description>
- </method>
- <method name="set_texture_pressed">
- <return type="void">
- </return>
- <argument index="0" name="texture_pressed" type="Texture">
- </argument>
- <description>
- Sets the button's [Texture] for the pressed state.
- </description>
- </method>
- <method name="set_visibility_mode">
- <return type="void">
- </return>
- <argument index="0" name="mode" type="int" enum="TouchScreenButton.VisibilityMode">
- </argument>
- <description>
- Sets the button's visibility mode. See the [code]VISIBILITY_*[/code] constants.
- </description>
- </method>
</methods>
<members>
<member name="action" type="String" setter="set_action" getter="get_action">