mirror of https://github.com/OpenMW/openmw.git
Changing setting renderer arguments
parent
b832ba5c83
commit
1fe794d935
@ -1,45 +0,0 @@
|
||||
local ui = require('openmw.ui')
|
||||
local util = require('openmw.util')
|
||||
|
||||
local whiteTexture = ui.texture{ path = 'white' }
|
||||
|
||||
local menuTransparency = ui._getMenuTransparency()
|
||||
|
||||
return function(templates)
|
||||
templates.backgroundTransparent = {
|
||||
props = {
|
||||
resource = whiteTexture,
|
||||
color = util.color.rgb(0, 0, 0),
|
||||
alpha = menuTransparency,
|
||||
},
|
||||
}
|
||||
templates.backgroundSolid = {
|
||||
props = {
|
||||
resource = whiteTexture,
|
||||
color = util.color.rgb(0, 0, 0),
|
||||
},
|
||||
}
|
||||
templates.box = {
|
||||
props = {
|
||||
inheritAlpha = false,
|
||||
},
|
||||
content = ui.content {
|
||||
{
|
||||
type = ui.TYPE.Image,
|
||||
template = templates.backgroundTransparent,
|
||||
props = {
|
||||
relativeSize = util.vector2(1, 1),
|
||||
},
|
||||
},
|
||||
{
|
||||
template = templates.borders,
|
||||
props = {
|
||||
relativeSize = util.vector2(1, 1),
|
||||
},
|
||||
external = {
|
||||
slot = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
end
|
@ -0,0 +1,31 @@
|
||||
local ui = require('openmw.ui')
|
||||
local util = require('openmw.util')
|
||||
|
||||
local constants = require('scripts.omw.mwui.constants')
|
||||
|
||||
return function(templates)
|
||||
templates.disabled = {
|
||||
type = ui.TYPE.Container,
|
||||
props = {
|
||||
alpha = 0.6,
|
||||
},
|
||||
content = ui.content {
|
||||
{
|
||||
props = {
|
||||
relativeSize = util.vector2(1, 1),
|
||||
},
|
||||
external = {
|
||||
slot = true,
|
||||
},
|
||||
},
|
||||
{
|
||||
type = ui.TYPE.Image,
|
||||
props = {
|
||||
resource = constants.whiteTexture,
|
||||
color = util.color.rgb(0, 0, 0),
|
||||
relativeSize = util.vector2(1, 1),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
end
|
Loading…
Reference in New Issue