コード例 #1
0
"""
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)
コード例 #2
0
"""
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)
コード例 #3
0
ファイル: Squares.py プロジェクト: kathamer/M00D
"""
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)