Hello! I've seen searching through the manual and the forum all day, but couldn't find a solution to a problem I've been having.
Basically, I am trying to create a typewriter styled dialogue box using displays and substrings.
However, I've managed to get everything working as I wanted, except for one thing. Despite all my efforts, the displays don't skip automatically, and you need to click with the mouse to advance through the display letter by letter.
Is there any way to make the display skip to the next one?
This is the code I have for reference:
Code: ags
Basically, I am trying to create a typewriter styled dialogue box using displays and substrings.
However, I've managed to get everything working as I wanted, except for one thing. Despite all my efforts, the displays don't skip automatically, and you need to click with the mouse to advance through the display letter by letter.
Is there any way to make the display skip to the next one?
This is the code I have for reference:
String text = "test";
for (int i = 0; i <= text.Length; i++)
{
String substring = text.Substring(0, i);
DisplayAt(50,400,500, substring);
}