diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-02 22:12:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 22:12:15 +0100 |
commit | bf6398ae242cbaf90ff792d709d4727c8adc31ca (patch) | |
tree | 445d5fb4a0e51072f7492ee5599ee18dbf107a5b /doc/classes | |
parent | 4bd9135eee7c805ee6aa5a0bbab94f3024bd8d06 (diff) | |
parent | 52125af7a0a0ed90c2fb966c64d1a5120e7c0b78 (diff) |
Merge pull request #26502 from psuhas77/patch-2
mentioned possible use of property:component syntax
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Tween.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Tween.xml b/doc/classes/Tween.xml index c3af586b21..f5f50a75b1 100644 --- a/doc/classes/Tween.xml +++ b/doc/classes/Tween.xml @@ -13,7 +13,7 @@ Tween.TRANS_LINEAR, Tween.EASE_IN_OUT) tween.start() [/codeblock] - Many methods require a property name, such as "position" above. You can find the correct property name by hovering over the property in the Inspector. + Many methods require a property name, such as "position" above. You can find the correct property name by hovering over the property in the Inspector. You can also provide the components of a property directly by using "property:component" (eg. [code]position:x[/code]), where it would only apply to that particular component. Many of the methods accept [code]trans_type[/code] and [code]ease_type[/code]. The first accepts an [enum TransitionType] constant, and refers to the way the timing of the animation is handled (see [code]http://easings.net/[/code] for some examples). The second accepts an [enum EaseType] constant, and controls the where [code]trans_type[/code] is applied to the interpolation (in the beginning, the end, or both). If you don't know which transition and easing to pick, you can try different [enum TransitionType] constants with [code]EASE_IN_OUT[/code], and use the one that looks best. </description> <tutorials> |