X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fconstants.py;h=378003bfcdfb49ff720e5906c286352e85301e76;hb=122d9fef6f8261a7e45026e3498ce95569b4d344;hp=8e6bac7d4ba92dacb82cd72f5ee83e98e967e57f;hpb=01dc6fdbe8a3107dc7ae1e0901839d329d2bcfe7;p=tabakrolletjie.git diff --git a/tabakrolletjie/constants.py b/tabakrolletjie/constants.py index 8e6bac7..378003b 100644 --- a/tabakrolletjie/constants.py +++ b/tabakrolletjie/constants.py @@ -1,10 +1,12 @@ """ Game constants. """ +import os + TITLE = "Space Turnips" # Debug -DEBUG = False +DEBUG = os.environ.get("TABAK_DEBUG", "").lower() in ("1", "y", "yes") # 704 is 768 minus space for window decorations :) SCREEN_SIZE = (1024, 704) @@ -15,3 +17,4 @@ FPS = 60 # Pymunk categories OBSTACLE_CATEGORY = 1 << 0 LIGHT_CATEGORY = 1 << 1 +MOULD_CATEGORY = 1 << 2