fysplane/settings.lua

47 lines
788 B
Lua
Raw Normal View History

-- Game specific settings go here
-- LÖVE settings should go to conf.lua
2014-10-18 21:24:01 +00:00
PIXELS_PER_METER = 8
2014-10-18 11:23:10 +00:00
GRAVITY_X = 0
2014-10-18 12:59:39 +00:00
GRAVITY_Y = 9.82599 * PIXELS_PER_METER
WIDTH = 1280
HEIGHT = 768
KEYMAP = {
[1] = {
ccw = 'k',
cw = 'l',
flip = 'i',
shoot = 'o',
accelerate = 'j',
decelerate = 'm'
},
[2] = {
ccw = 'a',
cw = 's',
flip = 'q',
shoot = 'w',
accelerate = 'x',
decelerate = 'z'
}
}
2014-10-18 20:27:40 +00:00
2014-10-19 03:19:01 +00:00
PLANE_HEALTH = 500
2014-10-18 22:46:27 +00:00
PLANE_DEFAULT_GUN = "vickers77"
2014-10-18 20:27:40 +00:00
SCOREBOARD_WIDTH = 250
2014-10-18 23:22:14 +00:00
SCOREBOARD_HEIGHT = 125
2014-10-18 20:27:40 +00:00
SCOREBOARD_MARGIN = 20
2014-10-18 23:22:14 +00:00
2014-10-20 17:35:56 +00:00
ENGINE_MAX = 300
2014-10-18 23:51:03 +00:00
INITIAL_PLANE_SPEED = 400
2014-10-21 05:53:58 +00:00
INITIAL_ENGINE_SPEED = 200
2014-10-19 01:45:38 +00:00
2014-10-19 03:51:53 +00:00
HIT_SCORE = 1
2014-10-19 01:45:38 +00:00
KILL_SCORE = 10
SUICIDE_SCORE = -2