'How to realise sound effect in console-based effect for each char
How to realize sound effects in console-based effect for each char. in example: Ace Attorney dialogues I have a loop that slowly prints chars
static void PrintSlow(string str)
{
foreach (char c in str)
{
Console.Write(c);
Thread.Sleep(10);
}
}
I've tried to change Console.Write("\a" + c);
but it's not worked.
P.S I can accept answers in Russian
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|