various improvements

- console temporarily enabled DO NOT RELEASE
- game is bigger (a bit more difficult) and in 19x6 resolution now
- fullscreen explicitly false to prevent fullscreen happening when
setting resolution to monitor size
- time limit added, with game over screen (needs work)
- code adjusted to work with any resolution (assuming in 20 px
intervals)
This commit is contained in:
Paul Liverman
2015-02-08 23:55:56 -08:00
parent 43e7bdb7d7
commit a3fab3b5e7
5 changed files with 148 additions and 54 deletions

View File

@@ -2,13 +2,15 @@ function love.conf(t)
t.identity = "rgb"
t.version = "0.9.1"
--t.author = "Guard13007"
--t.console = true
t.console = true
t.window = {}
t.window.title = "RGB - The Color Chooser"
t.window.width = 800
t.window.height = 460
t.window.width = 960 --800
t.window.height = 540 --460
t.window.fullscreen = false
t.window.borderless = true
t.window.resizable = false
--t.modules = {}
t.modules.joystick = false