textutils.slowPrint
Slowly prints text, character-by-character, at the current cursor position in the current term. Accepts an optional rate parameter, in characters per second (default 20). This function is similar to textutils.slowWrite, however it automatically moves to the next line after writing.
This function delegates to textutils.slowWrite, which in turn delegates to write, so they have the same behaviour. This function will insert a newline after printing. This function does not support printing multiple objects. You will have to concatenate them together into a single string. This function supports writing newlines (e.g. via the \n
character).This function will wrap the text when it is longer than the screen width. If you don't want a trailing newline, consider using textutils.slowWrite instead.
|
|||
Slowly prints "Hello, world!" to the current term. | |||
Code | <nowiki>
textutils.slowPrint("Hello, world!")
</nowiki>
|
|
|||
Slowly prints "Hello, world!" to the current term, at 5 characters per second. | |||
Code | <nowiki>
textutils.slowPrint("Hello, world!", 5)
</nowiki>
|
textutils.slowPrint Function | |
---|---|
Syntax textutils.slowPrint(
| |
Returns | nil |
API | textutils |
Source | CC:Tweaked (source) |
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.