Merge pull request #6613 from pkowal1982/tween
Tween reset/stop/resume/remove for all object properties at once
This commit is contained in:
commit
ddf2acad4e
2 changed files with 21 additions and 18 deletions
|
|
@ -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="""">
|
||||
</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="""">
|
||||
</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="""">
|
||||
</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="""">
|
||||
</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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue