summaryrefslogtreecommitdiff
path: root/doc/base/classes.xml
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2016-10-09 13:56:33 +0200
committerGitHub <noreply@github.com>2016-10-09 13:56:33 +0200
commitddf2acad4efe661a38bc9ee7a451e41e159e7b79 (patch)
tree54e07e72694c0acf10ee58a5c4fc4f426506ee88 /doc/base/classes.xml
parent28b0e9a56cabf6d637862bb01aa8e2f7bb871c06 (diff)
parentacc242fd6a3fc0dda18c01290263313e09d8269e (diff)
Merge pull request #6613 from pkowal1982/tween
Tween reset/stop/resume/remove for all object properties at once
Diffstat (limited to 'doc/base/classes.xml')
-rw-r--r--doc/base/classes.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index c18cba09a4..a65f4abc46 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -44206,10 +44206,10 @@
</return>
<argument index="0" name="object" type="Object">
</argument>
- <argument index="1" name="key" type="String">
+ <argument index="1" name="key" type="String" default="&quot;&quot;">
</argument>
<description>
- Stop animating and completely remove a tween, given its object and property/method pair.
+ Stop animating and completely remove a tween, given its object and property/method pair. Passing empty String as key will remove all tweens for given object.
</description>
</method>
<method name="remove_all">
@@ -44224,10 +44224,10 @@
</return>
<argument index="0" name="object" type="Object">
</argument>
- <argument index="1" name="key" type="String">
+ <argument index="1" name="key" type="String" default="&quot;&quot;">
</argument>
<description>
- Resets a tween to the initial value (the one given, not the one before the tween), given its object and property/method pair.
+ Resets a tween to the initial value (the one given, not the one before the tween), given its object and property/method pair. Passing empty String as key will reset all tweens for given object.
</description>
</method>
<method name="reset_all">
@@ -44242,10 +44242,10 @@
</return>
<argument index="0" name="object" type="Object">
</argument>
- <argument index="1" name="key" type="String">
+ <argument index="1" name="key" type="String" default="&quot;&quot;">
</argument>
<description>
- Continue animating a stopped tween, given its object and property/method pair.
+ Continue animating a stopped tween, given its object and property/method pair. Passing empty String as key will resume all tweens for given object.
</description>
</method>
<method name="resume_all">
@@ -44304,10 +44304,10 @@
</return>
<argument index="0" name="object" type="Object">
</argument>
- <argument index="1" name="key" type="String">
+ <argument index="1" name="key" type="String" default="&quot;&quot;">
</argument>
<description>
- Stop animating a tween, given its object and property/method pair.
+ Stop animating a tween, given its object and property/method pair. Passing empty String as key will stop all tweens for given object.
</description>
</method>
<method name="stop_all">