Is there a complete list of tween config properties?

I want to make an image scale with tweens. In the API I found nothing on how to scale a GameObject with a tween. In the examples I found several cases of properties used that are not documented in
https://photonstorm.github.io/phaser3-docs/Phaser.Tweens.Builders.html#.TweenBuilder

I found a scaleX property for example, but I would like to read some documentation on it (I don’t really get what scaleX: 1 does.

So, my specific question is how to make a GameObject scale with tweens?

But the more general question is: Where is the complete documentation for tween properties?

You can tween any numeric property. scaleX is a property of the tween target, not part of the tween config.

Wow, that’s quite a powerful concept.

I know it’s a little confusing because you pass everything in one object.

But every property that’s not a tween config property is treated as a target property.

1 Like