We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b0a28 commit fe83412Copy full SHA for fe83412
monarch/transitions/gui.lua
@@ -20,10 +20,10 @@ local LAYOUT_CHANGED = hash("layout_changed")
20
function M.window_resized(width, height)
21
WIDTH = width
22
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)
+ LEFT = vmath.vector3(-WIDTH, 0, 0)
+ RIGHT = vmath.vector3(WIDTH, 0, 0)
+ TOP = vmath.vector3(0, HEIGHT, 0)
+ BOTTOM = vmath.vector3(0, - HEIGHT, 0)
27
end
28
29
M.window_resized(tonumber(sys.get_config("display.width")), tonumber(sys.get_config("display.height")))
0 commit comments