You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import os
|
|
|
|
|
|
'''定义一些超参'''
|
|
WIDTH = 600
|
|
HEIGHT = 600
|
|
NUMGRID = 8
|
|
GRIDSIZE = 64
|
|
XMARGIN = (WIDTH - GRIDSIZE * NUMGRID) // 2
|
|
YMARGIN = (HEIGHT - GRIDSIZE * NUMGRID) // 2
|
|
ROOTDIR = os.getcwd()
|
|
FPS = 30 |