""" Matrix.py Matrix aesthetic for M00D by Dylan Hamer """ from M00D import loop, clear class matrix: colours = ["red", "yellow"] text = ["PIZZA!", "pizza"] delay = 0.001 title = "pizza time" clear() loop(colours=matrix.colours, text=matrix.text, delay=matrix.delay, title=matrix.title)
""" Matrix.py Matrix aesthetic for M00D by Dylan Hamer """ from M00D import loop, clear class matrix: colours = ["green", "white"] text = ["0", "1"] delay = 0.001 title = "F0110W TH3 WH1T3 R@881T" exitMessage = "\n\nIgnorance is bliss.\n" clear() loop(colours = matrix.colours, text = matrix.text, delay = matrix.delay, title = matrix.title, exitMessage = matrix.exitMessage)
""" Squarws.py Squares aesthetic for M00D by Dylan Hamer """ from M00D import loop, clear class squares: colours = ["red", "green", "blue", "yellow", "cyan", "magenta", "white"] text = ["#"] delay = 0.001 title = "Squares!" clear() loop(colours=squares.colours, text=squares.text, delay=squares.delay, title=squares.title)