For design reasons I would like to make individual chars/letters in a string fade-in into the dialogbox with animation player, one by one.
So imagine the string: "Hello"
I would like to see H transits from 1,1,1,0 opacity to 1,1,1,1 opacity. Something like
var text = "Hello"
text[0].modulate(1,1,1,0)
#In the animation player text[0] gets modulate of (1,1,1,1) after let say 1 sec.
Once that is done in the animation player. The next letter which is "e" should transits from 1,1,1,0 opacity to 1,1,1,1 opacity, this repeats till every letter of Hello is animated.
Problem is I can't give individual char the proper property, let alone a key and value in the AnimationPlayer. Only the whole string "Hello" can fade in and fade out..
How to solve this? I don't think creating labelboxes for every char forming a sentence is the solution...