pneuma-pygame/configs/system/window_config.py

16 lines
248 B
Python
Raw Normal View History

# game setup
WIDTH = 1280
HEIGHT = 720
2023-11-17 02:19:03 +00:00
FPS = 1000
TILESIZE = 64
HITBOX_OFFSET = {
'player': (-6, -26),
'camera': (-50, -50),
'object': (0, -40),
'grass': (0, -10),
'invisible': (0, 0)
}
# general colors
WATER_COLOR = '#71ddee'