mirror of https://github.com/teverse/teverse
Compare commits
No commits in common. "0bfe732c3af036931e9a6a0235c7d5489135f971" and "1859c49ab45091e8ff669d1717182526c617f0f5" have entirely different histories.
0bfe732c3a
...
1859c49ab4
|
@ -18,28 +18,28 @@ local container = engine.construct("guiFrame", engine.interface, {
|
|||
position = guiCoord(0, 0, 1, -295),
|
||||
backgroundColour = colour(0.1, 0.1, 0.1),
|
||||
handleEvents = false,
|
||||
backgroundAlpha = 0,
|
||||
backgroundAlpha = 0.1,
|
||||
zIndex = 1001
|
||||
})
|
||||
|
||||
local messagesOutput = engine.construct("guiTextBox", container, {
|
||||
size = guiCoord(1, -8, 1, -35),
|
||||
size = guiCoord(1, -8, 1, -45),
|
||||
position = guiCoord(0, 4, 0, 2),
|
||||
backgroundAlpha = 0,
|
||||
handleEvents = false,
|
||||
wrap = true,
|
||||
align = enums.align.bottomLeft,
|
||||
fontSize = 21,
|
||||
text = ""
|
||||
})
|
||||
|
||||
local messageInputFrame = engine.construct("guiFrame", container, {
|
||||
size = guiCoord(1, 0, 0, 24),
|
||||
position = guiCoord(0, 0, 1, -24),
|
||||
size = guiCoord(1, -30, 0, 24),
|
||||
position = guiCoord(0, 15, 1, -39),
|
||||
backgroundColour = colour(0.1, 0.1, 0.1),
|
||||
fontSize = 18,
|
||||
handleEvents = false,
|
||||
backgroundAlpha = 0.3,
|
||||
backgroundAlpha = 0.4,
|
||||
borderRadius = 2,
|
||||
zIndex = 1001
|
||||
})
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
local container = engine.construct("guiFrame", engine.interface, {
|
||||
size = guiCoord(0,400,0,295),
|
||||
position = guiCoord(1, -400, 1, -295),
|
||||
position = guiCoord(0, 350, 1, -295),
|
||||
backgroundColour = colour(0.1, 0.1, 0.1),
|
||||
handleEvents = false,
|
||||
backgroundAlpha = 0.1,
|
||||
|
@ -12,7 +12,6 @@ local serverOutput = engine.construct("guiTextBox", container, {
|
|||
position = guiCoord(0, 4, 0, 2),
|
||||
backgroundAlpha = 0,
|
||||
handleEvents = false,
|
||||
wrap = true,
|
||||
align = enums.align.bottomLeft,
|
||||
fontSize = 15,
|
||||
text = "[Server Output]"
|
||||
|
|
Loading…
Reference in New Issue