summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-05-11 19:05:55 +0200
committerRémi Verschelde <remi@verschelde.fr>2016-05-11 19:05:55 +0200
commitb42c4cce0f378ca51cd30aa542299bad8c575512 (patch)
treeae9a32ec327a2697d1e0a7b1d8d237ba1dffe055 /doc
parent7b471068cf8e4d166d8b0569b489f595213c3b52 (diff)
parent997476777a83022d4ea2858e3b8127ef44639d86 (diff)
Merge pull request #4627 from Paulb23/caret_blink_binds
Exposed caret blink to gdscript and properties
Diffstat (limited to 'doc')
-rw-r--r--doc/base/classes.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 643658fbb9..55b74dd3b4 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -37075,6 +37075,34 @@ This method controls whether the position between two cached points is interpola
Return the line the editing cursor is at.
</description>
</method>
+ <method name="cursor_set_blink_enabled">
+ <argument index="0" name="enable" type="bool">
+ </argument>
+ <description>
+ Set the text editor caret to blink.
+ </description>
+ </method>
+ <method name="cursor_get_blink_enabled" qualifiers="const">
+ <return type="float">
+ </return>
+ <description>
+ Gets whether the text editor caret is blinking.
+ </description>
+ </method>
+ <method name="cursor_set_blink_speed">
+ <argument index="0" name="blink_speed" type="float">
+ </argument>
+ <description>
+ Set the text editor caret blink speed. Cannot be less then or equal to 0.
+ </description>
+ </method>
+ <method name="cursor_get_blink_speed" qualifiers="const">
+ <return type="float">
+ </return>
+ <description>
+ Gets the text editor caret blink speed.
+ </description>
+ </method>
<method name="set_readonly">
<argument index="0" name="enable" type="bool">
</argument>