Add fitings category.
[tabakrolletjie.git] / tabakrolletjie / constants.py
1 """ Game constants.
2 """
3
4 import os
5
6 TITLE = "Space Turnips"
7
8 # Debug
9 DEBUG = os.environ.get("TABAK_DEBUG", "").lower() in ("1", "y", "yes")
10
11 # 704 is 768 minus space for window decorations :)
12 SCREEN_SIZE = (1024, 704)
13
14 # Frame per second
15 FPS = 60
16
17 # Pymunk categories
18 OBSTACLE_CATEGORY = 1 << 0
19 LIGHT_CATEGORY = 1 << 1
20 MOULD_CATEGORY = 1 << 2
21 FITTINGS_CATEGORY = 1 << 3