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.
hohmann-miner/config.rb

17 lines
340 B

3 years ago
# UI
3 years ago
WINDOW_WIDTH = 1600
WINDOW_HEIGHT = 900
3 years ago
WINDOW_FULLSCREEN = true
3 years ago
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