summaryrefslogtreecommitdiff
path: root/client/util.lua
blob: 1d9b753b99cb08dcf22a31179c71ac3488789955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local font = love.graphics.getFont()
local text = love.graphics.newText(font)

local function print_good(lines,x,y)
	for _,line in ipairs(lines) do
		text:set(line)
		local w,h = text:getDimensions()
		love.graphics.setColor(0,0,0,0.6)
		love.graphics.rectangle("fill",x,y,w,h)
		love.graphics.setColor(1,1,1)
		love.graphics.draw(text,x,y)
		y = y + h
	end
end

return {
	print_good=print_good
}