Quantcast
Channel: Programming (In-game)
Viewing all articles
Browse latest Browse all 645

Displaying output one char at a time?

$
0
0
Typing one char at a time from a string is nice and sci-fi-y.
Is it possible? Since we can't do any thread manipulation?

In psuedo:
Code:
IMyTextPanel tp = getBlockWithName("bla bla");
string myString = "I'm afraid I cannot do that Dave";

for each (char c in myString)
{
	tp.WritePublicText(c, true);
	sleep(0,2);
}
Not possible?

EDIT!
If possible, put a sound block next to the LCD and have it play a little click sound for each char, would add to the Alien style screen ^^

Viewing all articles
Browse latest Browse all 645

Trending Articles