In RPG's or in any game, the text appears from left to right, is there a possible way to do that with construct2, I can't find a definate way besides using animations.
there are tons of examples for rpg text boxes and pop ups
Turn your text into a bullet.
Have one text as a source and then another text object for the text being displayed.
Every X second -> Set text to left(SourceText.Text, len(DestinationText.Text)+1)
There's a working capx example by Ashley in this link:
Develop games in your browser. Powerful, performant & highly capable.
Have one text as a source and then another text object for the text being displayed. Every X second -> Set text to left(SourceText.Text, len(DestinationText.Text)+1) There's a working capx example by Ashley in this link:
Thanks a lot! This is pretty simple.