projects
/
tabakrolletjie.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8e6bac7d4ba92dacb82cd72f5ee83e98e967e57f
[tabakrolletjie.git]
/
tabakrolletjie
/
constants.py
1
""" Game constants.
2
"""
3
4
TITLE = "Space Turnips"
5
6
# Debug
7
DEBUG = False
8
9
# 704 is 768 minus space for window decorations :)
10
SCREEN_SIZE = (1024, 704)
11
12
# Frame per second
13
FPS = 60
14
15
# Pymunk categories
16
OBSTACLE_CATEGORY = 1 << 0
17
LIGHT_CATEGORY = 1 << 1