Is there a way to implement a "typing" effect when displaying text? Maybe like the lyrics to "Still Alive" that are shown when you beat Portal?
Thanks!
Thanks!
Function Rite(a$) num=Len(a$) For i=1 To num Write Mid$(a$,i,1) Delay 100 Next Print End Functionbut I don't have Blitz3D anymore. That code also doesn't support x,y.
Graphics(640,480) Function TeleType(text:String,x:Int,y:Int) For Local i:Int=1 To Len(text) DrawText(Left(text,i),x,y) Delay(60) Flip Next EndFunction TeleType("This is a test",0,0) Teletype("Please press Any Key to Exit.",0,12) Teletype("Oh, by the way, the cake is a lie :)",0,48) WaitKey() End