diff options
author | Indrajith K L | 2022-03-01 18:19:59 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-01 18:19:59 +0530 |
commit | 6227a1c681c0559add922a7e68cd634fcc85df41 (patch) | |
tree | 7a01d52d39fe9483ae4788bb40d46c570325ea1f /core/map.lua | |
parent | f5eaa22a1c9598c9f7a55a41614d1ce4769dee4a (diff) | |
download | YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.tar.gz YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.tar.bz2 YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.zip |
* Cosmetic Changes in Menu
* New Fonts Added
* Menu rendering changes
* Removed Hacky text co-ordinate calculations
* Replaced with love.text
* Disappearing Notification messages implemented
Diffstat (limited to 'core/map.lua')
-rw-r--r-- | core/map.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/map.lua b/core/map.lua index acbdc4a..280057a 100644 --- a/core/map.lua +++ b/core/map.lua @@ -5,7 +5,6 @@ Moonshine = require("libs.moonshine") Camera = require("libs.hump.camera") Windfield = require("libs.windfield") require("libs.tserial") -print(TSerial) require("core.notifications") local zoomFactor = 2 @@ -146,7 +145,7 @@ function Map:draw() drawMapLayer("decorations") love.graphics.draw(player.sprite, player.x, player.y) drawMapLayer("foreground") - _gameWorld:draw() + -- _gameWorld:draw() -- Debug Collision Draw camera:detach() notifications:draw() end) |