Files
PlanetFleet/Assets/Scripts/Gui/activeGameState.lua
T
devZoGok fd02c64765 extended ConcreteGuiManager to parse texts and GUI nodes
using parsed texts in the ActiveGameState
2023-12-26 11:31:06 +02:00

43 lines
800 B
Lua

gui = {
{
guiType = GuiType.TEXT,
name = 'refineds',
pos = {x = 0, y = 100},
zIndex = 0,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
guiType = GuiType.TEXT,
name = 'wealth',
pos = {x = 0, y = 200},
zIndex = 0,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
guiType = GuiType.TEXT,
name = 'research',
pos = {x = 0, y = 300},
zIndex = 0,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
guiType = GuiType.TEXT,
name = 'depth',
pos = {x = 0, y = 400},
zIndex = 0,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
}
}