Update readme and better config defaults
This commit is contained in:
parent
ff799185fb
commit
817da7bd60
2 changed files with 5 additions and 1 deletions
|
@ -26,6 +26,10 @@ Currently, you need to import the source as a new project in visual studio and s
|
||||||
* [ ] Make entities and AI completely data-driven
|
* [ ] Make entities and AI completely data-driven
|
||||||
* [ ] Implement Lua for item/effects/action scripting
|
* [ ] Implement Lua for item/effects/action scripting
|
||||||
* Might as well use it for basic data storage as well, since I can then skip creating my own parser or adding an additional library for json/yaml/toml/whatever.
|
* Might as well use it for basic data storage as well, since I can then skip creating my own parser or adding an additional library for json/yaml/toml/whatever.
|
||||||
|
* [x] Initial implementation
|
||||||
|
* [ ] Items
|
||||||
|
* [ ] Status Effects
|
||||||
|
* [ ] Spells
|
||||||
|
|
||||||
### Wishlist
|
### Wishlist
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
function dungeon.config(cfg)
|
function dungeon.config(cfg)
|
||||||
cfg.window.fullscreen = false
|
cfg.window.fullscreen = false
|
||||||
cfg.window.width = 792
|
cfg.window.width = 792
|
||||||
cfg.window.height = 300
|
cfg.window.height = 600
|
||||||
cfg.gfx.vsync = false
|
cfg.gfx.vsync = false
|
||||||
cfg.gfx.wireframes = false
|
cfg.gfx.wireframes = false
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue