@meager shore
File Attachments Not Allowed
For safety reasons we do not allow file and video attachments.
Feather Said
I am making a basic library that prints text slowly to the screen, almost like dialog in an RPG, the only problem, is that the text does not slowly appear on the screen, the console remains empty until it suddenly appear! I have the code for everything below and a video demonstrating it.
Code for the library:
import time step = 0 split = 0 def slowscantext(text,delay=0.05, newline=True): split = list(text) for x in split: print(x, end="") time.sleep(delay) if newline == True: print("\n" end="")
Code Formatting
You can share your code using triple backticks like this:
```
YOUR CODE
```
Large Portions of Code
For longer scripts use Hastebin or GitHub Gists and share the link here
Ignored these files
- simplescreenrecorder-2023-01-15_18.54.09.mp4