Hi everyone,
I have several Labels
in different spots on screen, all members of a group
and all sharing a script
. There's a function in that script handling the transparency of all these Labels via Tween („modulate“)
, so I can have them all together fade in and out as I wish, which works fine.
However, trying to add another Tween („rect_position“)
for tweaking their position puts all the Labels into that one position, overlapping each other, which seems like the logical consequence, as they all share the same script.
Is there any way to set a position-tween into that shared script while keeping each Label in their own original spot? I tried around with position: x
and global_position
but to no avail.