Move const to const.lua

This commit is contained in:
Insality
2019-12-05 21:34:26 +03:00
parent e45dce150d
commit f8a3b6f632
3 changed files with 17 additions and 16 deletions

View File

@@ -12,6 +12,7 @@ M.ACTION_BACK = hash("back")
M.RELEASED = "released"
M.PRESSED = "pressed"
M.STRING = "string"
--- Interests
M.ON_MESSAGE = hash("on_message")
@@ -21,6 +22,18 @@ M.ON_UPDATE = hash("on_update")
M.ON_SWIPE = hash("on_swipe")
M.ON_INPUT = hash("on_input")
M.PIVOTS = {
[gui.PIVOT_CENTER] = vmath.vector3(0),
[gui.PIVOT_N] = vmath.vector3(0, 0.5, 0),
[gui.PIVOT_NE] = vmath.vector3(0.5, 0.5, 0),
[gui.PIVOT_E] = vmath.vector3(0.5, 0, 0),
[gui.PIVOT_SE] = vmath.vector3(0.5, -0.5, 0),
[gui.PIVOT_S] = vmath.vector3(0, -0.5, 0),
[gui.PIVOT_SW] = vmath.vector3(-0.5, -0.5, 0),
[gui.PIVOT_W] = vmath.vector3(-0.5, 0, 0),
[gui.PIVOT_NW] = vmath.vector3(-0.5, -0.5, 0),
}
M.ui_input = {
[M.ON_SWIPE] = true,
[M.ON_INPUT] = true
@@ -30,7 +43,7 @@ M.ui_input = {
M.ON_CHANGE_LANGUAGE = hash("on_change_language")
M.ON_LAYOUT_CHANGED = hash("on_layout_changed")
M.specific_ui_messages = {
M.SPECIFIC_UI_MESSAGES = {
[M.ON_CHANGE_LANGUAGE] = "on_change_language",
[M.ON_LAYOUT_CHANGED] = "on_layout_changed"
}