Compare commits

...

3 Commits

Author SHA1 Message Date
teverse ff3fac5c47 Merge branch 'master' of https://github.com/teverse/teverse 2020-04-22 18:00:33 +01:00
teverse 5a1d65ca95 Login screen friendlier for 1080p 2020-04-22 18:00:29 +01:00
Jay cc1f2659b1 fix 2020-04-22 17:59:20 +01:00
2 changed files with 5 additions and 4 deletions

View File

@ -6,12 +6,12 @@ local main = teverse.construct("guiFrame", {
})
teverse.construct("guiImage", {
position = guiCoord(0.5, -750, 0.5, -750),
size = guiCoord(0, 1500, 0, 1500),
position = guiCoord(0.5, -1500, 0.5, -750),
size = guiCoord(0, 3000, 0, 1500),
parent = main,
backgroundAlpha = 0,
image = "tevurl:img/tTiled.png",
imageBottomRight = vector2(90, 90),
imageBottomRight = vector2(180, 90),
imageColour = colour:rgb(28, 33, 38),
imageAlpha = 0.25,
zIndex = -1

View File

@ -23,7 +23,8 @@ local ico = teverse.construct("guiIcon", {
iconAlpha = 0.75,
strokeRadius = 10,
strokeAlpha = 0.5,
backgroundAlpha = 1
backgroundAlpha = 1,
visible = teverse.networking.localClient ~= nil
})
local lastClick = 0