Is there any way to change a text object in between intervals? I can simply create a new text object and attach it to aspect2d, but I don’t want the 2 text objects to appear at the same time.
I have an interval that takes a text object and changes its scale. Then, for the next interval, I want to change the text.
It’s nice, but it’s not what I’m looking for. I want to change the text itself between intervals. I can do that if I know which interval is currently playing inside the sequence. Is there any way to know that? I tried looking at the Sequence API but no luck.
I would like to know what you means with “change a text object” If you just need to change the text content over each sequence so do a youronscreentextobject.setText(your_text_variable) at the beginning of the sequence. But I bet you’re going to say to me ’ it’s not what I’m looking for" - if so, try to be more specific
Actually you are pretty much spot on. I want to change the text content. However, I want to do that in between intervals.
I’ll be more specific: The first interval changes the scale of a text object. After the 1st interval, I want to change the text content, and then run another interval that changes the scale of the text object again (the one with the new content)