diff options
| author | Pawel Kowal | 2016-09-25 23:25:52 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-09 17:22:16 +0200 |
| commit | 6fc894d65264e37f6c0772f3789bcec52c7bbe3a (patch) | |
| tree | 579fe80fed873d84030c050479f03a9596d77635 /doc/base/classes.xml | |
| parent | 5adb75c2e71780d5b53cec06af33aee3dd34d83a (diff) | |
| download | godot-6fc894d65264e37f6c0772f3789bcec52c7bbe3a.tar.gz godot-6fc894d65264e37f6c0772f3789bcec52c7bbe3a.tar.zst godot-6fc894d65264e37f6c0772f3789bcec52c7bbe3a.zip | |
Tween reset/stop/resume/remove for all object properties at once
(cherry picked from commit acc242fd6a3fc0dda18c01290263313e09d8269e)
Diffstat (limited to 'doc/base/classes.xml')
| -rw-r--r-- | doc/base/classes.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 57cb68887..bba35c55e 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -42923,10 +42923,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=""""> </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"> @@ -42941,10 +42941,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=""""> </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"> @@ -42959,10 +42959,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=""""> </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"> @@ -43021,10 +43021,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=""""> </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"> |
