Hey there! The solution to this is probably quite simple, and maybe I'm on the right track, but I can't seem to understand where I'm going wrong.
I have this tween setup so that the characters gradually show up on screen. I thought I could use a for loop which looked at text1.visible_characters and play a sound each time it updated but when I tried, I got nothing. I'm sure I'm missing something simple, but it's driving me crazy.
Any help would be appreciated!
tween = create_tween().set_trans(Tween.TRANS_QUAD).set_ease(Tween.EASE_OUT)
tween.tween_property(text1, "visible_characters", char_count1, 2)```