Corentin Cailleaud commited on
Commit
e3d607d
·
1 Parent(s): 193befa
Files changed (1) hide show
  1. cubzh.lua +22 -4
cubzh.lua CHANGED
@@ -40,8 +40,17 @@ local onboardingConfig = {
40
  start = function(onboarding, step)
41
  local ui = require("uikit")
42
  local data = {}
43
- data.ui = ui:createText("Hold click and drag to move camera", Color.White)
44
- data.ui.pos = { Screen.Width * 0.5 - data.ui.Width * 0.5, Screen.Height * 0.5 - data.ui.Height * 0.5 }
 
 
 
 
 
 
 
 
 
45
 
46
  data.listener = LocalEvent:Listen(LocalEvent.Name.PointerDrag, function()
47
  Timer(1, function()
@@ -61,8 +70,17 @@ local onboardingConfig = {
61
  start = function(onboarding, step)
62
  local ui = require("uikit")
63
  local data = {}
64
- data.ui = ui:createText("Use WASD/ZQSD to move", Color.White)
65
- data.ui.pos = { Screen.Width * 0.5 - data.ui.Width * 0.5, Screen.Height * 0.5 - data.ui.Height * 0.5 }
 
 
 
 
 
 
 
 
 
66
 
67
  data.listener = LocalEvent:Listen(LocalEvent.Name.KeyboardInput, function()
68
  Timer(1, function()
 
40
  start = function(onboarding, step)
41
  local ui = require("uikit")
42
  local data = {}
43
+ data.ui = ui:createFrame(Color(0, 0, 0, 0.5))
44
+ local text = ui:createText("Hold click and drag to move camera", Color.White)
45
+ text:setParent(data.ui)
46
+ data.ui.parentDidResize = function()
47
+ data.ui.Width = text.Width + text.Height
48
+ data.ui.Height = text.Height * 2
49
+ text.pos = { data.ui.Width * 0.5 - text.Width * 0.5, data.ui.Height * 0.5 - text.Height * 0.5 }
50
+ data.ui.pos =
51
+ { Screen.Width * 0.5 - data.ui.Width * 0.5, Screen.Height * 0.2 - data.ui.Height * 0.5 }
52
+ end
53
+ data.ui:parentDidResize()
54
 
55
  data.listener = LocalEvent:Listen(LocalEvent.Name.PointerDrag, function()
56
  Timer(1, function()
 
70
  start = function(onboarding, step)
71
  local ui = require("uikit")
72
  local data = {}
73
+ data.ui = ui:createFrame(Color(0, 0, 0, 0.5))
74
+ local text = ui:createText("Use WASD/ZQSD to move", Color.White)
75
+ text:setParent(data.ui)
76
+ data.ui.parentDidResize = function()
77
+ data.ui.Width = text.Width + text.Height
78
+ data.ui.Height = text.Height * 2
79
+ text.pos = { data.ui.Width * 0.5 - text.Width * 0.5, data.ui.Height * 0.5 - text.Height * 0.5 }
80
+ data.ui.pos =
81
+ { Screen.Width * 0.5 - data.ui.Width * 0.5, Screen.Height * 0.2 - data.ui.Height * 0.5 }
82
+ end
83
+ data.ui:parentDidResize()
84
 
85
  data.listener = LocalEvent:Listen(LocalEvent.Name.KeyboardInput, function()
86
  Timer(1, function()