pneuma-pygame/configs/system/window_config.py
2023-11-14 22:44:43 +01:00

15 lines
247 B
Python

# game setup
WIDTH = 1280
HEIGHT = 720
FPS = 500
TILESIZE = 64
HITBOX_OFFSET = {
'player': (-6, -26),
'camera': (-50, -50),
'object': (0, -40),
'grass': (0, -10),
'invisible': (0, 0)
}
# general colors
WATER_COLOR = '#71ddee'