Hohmann Miner, a sandbox physics game where you mine stuff.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# UI
|
|
|
|
WINDOW_WIDTH = 1600
|
|
|
|
WINDOW_HEIGHT = 900
|
|
|
|
WINDOW_FULLSCREEN = false
|
|
|
|
MAIN_FONT = "monospace"
|
|
|
|
|
|
|
|
# Keybinds
|
|
|
|
# General
|
|
|
|
BIND_PAUSE = Gosu::KbEscape
|
|
|
|
|
|
|
|
# Player Controlls
|
|
|
|
BIND_TURN_LEFT = Gosu::KbLeft
|
|
|
|
BIND_TURN_RIGHT = Gosu::KbRight
|
|
|
|
BIND_INCREASE_THRUST = Gosu::KbUp
|
|
|
|
BIND_DECREASE_THRUST = Gosu::KbDown
|
|
|
|
BIND_TOGGLE_ENGINE = Gosu::KbSpace
|