pneuma-pygame/game/configs/system/window_config.py

16 lines
246 B
Python
Raw Normal View History

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