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