Skip to content

Instantly share code, notes, and snippets.

View GranularBimbo's full-sized avatar

GranularBimbo

View GitHub Profile
@GranularBimbo
GranularBimbo / 5NightsInTheBasement.py
Created August 16, 2018 16:21
5 Nights In The Basement
import pygame
from image_renderer import *
from audio_renderer import *
import random
import pickle
display = pygame.display.set_mode([800,700])
pygame.display.set_caption("5 Nights in the Basement")
pygame.display.set_icon(icon)
@GranularBimbo
GranularBimbo / Python Scaling System Conversions.txt
Last active April 10, 2018 21:49
A system I created for animating in python by making python wait a certain amount of seconds by making a variable subtract by 1.
25 = 1 sec
50 = 2 sec
75 = 3 sec
100 = 4 sec
125 = 5 sec
every 25 adds 1 sec
every 50 adds 2 sec