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
}
|