Skip to content

Instantly share code, notes, and snippets.

View shorinji's full-sized avatar

Fredrik Fall shorinji

  • Sentor
  • Sweden
View GitHub Profile
@shorinji
shorinji / drawtext.py
Created April 28, 2020 13:23
Draws some text character by character with pygame
import pygame
import sys
pygame.init()
screen = pygame.display.set_mode([800, 600])
characters = list("Hello")
charsPrinted = 0
delay = 1000