15 lines
247 B
Python
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'
|