diff options
| author | Pawel Kowal | 2016-09-25 23:25:52 +0200 |
|---|---|---|
| committer | Pawel Kowal | 2016-09-25 23:25:52 +0200 |
| commit | acc242fd6a3fc0dda18c01290263313e09d8269e (patch) | |
| tree | c0420ecadff88b173c175fd4335640be3dd2ee06 /doc/base/classes.xml | |
| parent | 20c7b65b7e3630ada9f2e8b6b64926ec05d68c4c (diff) | |
| download | godot-acc242fd6a3fc0dda18c01290263313e09d8269e.tar.gz godot-acc242fd6a3fc0dda18c01290263313e09d8269e.tar.zst godot-acc242fd6a3fc0dda18c01290263313e09d8269e.zip | |
Tween reset/stop/resume/remove for all object properties at once
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 ab4610d4f..ab0dc6cea 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -43972,10 +43972,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"> @@ -43990,10 +43990,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"> @@ -44008,10 +44008,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"> @@ -44070,10 +44070,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"> |
