improvement: better option menu
This commit is contained in:
parent
c4fb3975c1
commit
267359865e
1 changed files with 10 additions and 2 deletions
|
@ -1,14 +1,22 @@
|
|||
local ListBox = require "core.modules.menusystem.listbox"
|
||||
local OptionMenu = ListBox:extend()
|
||||
local WIDTH = 424/1.4
|
||||
local HEIGHT = 240/1.4
|
||||
local HEIGHT = 240/1.9
|
||||
|
||||
local gui = require "game.modules.gui"
|
||||
|
||||
function OptionMenu:new(menusystem, name)
|
||||
local w, h = math.floor(WIDTH), math.floor(HEIGHT)
|
||||
local screenw, screenh = core.screen:getDimensions()
|
||||
local x = (screenw/2) - (w/2)
|
||||
local y = (screenh/2) - (h/2)
|
||||
OptionMenu.super.new(self, menusystem, name, x, y, w, h, 8)
|
||||
OptionMenu.super.new(self, menusystem, name, x, y, w, h, 6)
|
||||
self.box = gui.newTextBox("assets/gui/dialogbox.png", w+16, h+16)
|
||||
end
|
||||
|
||||
function OptionMenu:draw()
|
||||
love.graphics.draw(self.box, self.x-8, self.y-8)
|
||||
OptionMenu.super.draw(self)
|
||||
end
|
||||
|
||||
return OptionMenu
|
||||
|
|
Loading…
Reference in a new issue