Skip to content

Commit fe83412

Browse files
committed
Update gui.lua
1 parent e0b0a28 commit fe83412

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

monarch/transitions/gui.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ local LAYOUT_CHANGED = hash("layout_changed")
2020
function M.window_resized(width, height)
2121
WIDTH = width
2222
HEIGHT = height
23-
LEFT = vmath.vector3(-WIDTH * 2, 0, 0)
24-
RIGHT = vmath.vector3(WIDTH * 2, 0, 0)
25-
TOP = vmath.vector3(0, HEIGHT * 2, 0)
26-
BOTTOM = vmath.vector3(0, - HEIGHT * 2, 0)
23+
LEFT = vmath.vector3(-WIDTH, 0, 0)
24+
RIGHT = vmath.vector3(WIDTH, 0, 0)
25+
TOP = vmath.vector3(0, HEIGHT, 0)
26+
BOTTOM = vmath.vector3(0, - HEIGHT, 0)
2727
end
2828

2929
M.window_resized(tonumber(sys.get_config("display.width")), tonumber(sys.get_config("display.height")))

0 commit comments

Comments
 (0)