How do I tween an object by ADDING a value?

I want something like this, where I can ADD a value and not SET a value.

How can I do this in an easy way?

Game Example.

Imagine you left click on a Bee, and it get bigger everytime you click on it.
If you right click on it , it get smaller.

Currently this can be achived easily with:

Change the scale of Bee: add 0.1

image

How can it be achieved with tweens, though?

What’s wrong with tweening bee scale to bee.scale + 0.1?

Like:

image

1 Like

THANK YOU!

That was the exact expression I was looking for :slight_smile:

PS: I need to learn more about expressions…