Compare commits

...

2 Commits

Author SHA1 Message Date
teverse 0bfe732c3a chat amends 2019-12-10 21:36:49 +00:00
teverse 3b5d5d2ec0 fix chat wrap 2019-12-10 21:04:53 +00:00
2 changed files with 8 additions and 7 deletions

View File

@ -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
})

View File

@ -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]"