diff options
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -10,7 +10,7 @@ require "effect" -- Temporary debug debug = false -third = false +third = true fourth = false -- Load @@ -19,6 +19,11 @@ function love.load () love.graphics.setBackgroundColor(189, 95, 93) love.graphics.setDefaultFilter("nearest", "nearest") + -- Font + Font = love.graphics.newImageFont("assets/font2.png", " 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-,!:()[]{}<>", -1) + Font:setLineHeight(1) + love.graphics.setFont(Font) + -- ZU WARUDO! w = World:new() w:createPlatform(290/2, 180/2, {-91,1, 90,1, 90,10, 5,76, -5,76, -91,10}, "assets/platform_big.png") |