1234567891011121314151617181920212223242526 |
- # Configuration file for Squish
- # -----------------------------
- # Feel free to modify the configuration variables below to taste.
- # If the game is too fast or too slow, try to modify the speed
- # variables.
- # Change these to use other images in the game:
- banana_image = 'banana.png'
- weight_image = 'weight.png'
- splash_image = 'weight.png'
- # Change these to affect the general appearance:
- screen_size = 800, 600
- background_color = 255, 255, 255
- margin = 30
- full_screen = 1
- font_size = 48
- # These affect the behavior of the game:
- drop_speed = 1
- banana_speed = 10
- speed_increase = 1
- weights_per_level = 10
- banana_pad_top = 40
- banana_pad_side = 20
|