mirror of https://github.com/teverse/teverse
Compare commits
2 Commits
1859c49ab4
...
0bfe732c3a
Author | SHA1 | Date |
---|---|---|
teverse | 0bfe732c3a | |
teverse | 3b5d5d2ec0 |
|
@ -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.1,
|
||||
backgroundAlpha = 0,
|
||||
zIndex = 1001
|
||||
})
|
||||
|
||||
local messagesOutput = engine.construct("guiTextBox", container, {
|
||||
size = guiCoord(1, -8, 1, -45),
|
||||
size = guiCoord(1, -8, 1, -35),
|
||||
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, -30, 0, 24),
|
||||
position = guiCoord(0, 15, 1, -39),
|
||||
size = guiCoord(1, 0, 0, 24),
|
||||
position = guiCoord(0, 0, 1, -24),
|
||||
backgroundColour = colour(0.1, 0.1, 0.1),
|
||||
fontSize = 18,
|
||||
handleEvents = false,
|
||||
backgroundAlpha = 0.4,
|
||||
borderRadius = 2,
|
||||
backgroundAlpha = 0.3,
|
||||
zIndex = 1001
|
||||
})
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
local container = engine.construct("guiFrame", engine.interface, {
|
||||
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),
|
||||
handleEvents = false,
|
||||
backgroundAlpha = 0.1,
|
||||
|
@ -12,6 +12,7 @@ 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