mirror of https://github.com/teverse/teverse
Compare commits
7 Commits
deb10db9da
...
b39b953fa6
Author | SHA1 | Date |
---|---|---|
Jay | b39b953fa6 | |
Jay | 4b479a483e | |
Jay | 1434cef53f | |
Jay | a0fb4dcfb7 | |
Jay | 61e3a7347a | |
Jay | b676abadef | |
Jay | 036bbb8ee2 |
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
name = "Develop",
|
||||
iconId = "layer-group",
|
||||
iconType = "faSolid",
|
||||
setup = function(page)
|
||||
teverse.construct("guiTextBox", {
|
||||
parent = page,
|
||||
size = guiCoord(1.0, -20, 0, 48),
|
||||
position = guiCoord(0, 10, 0, 10),
|
||||
backgroundAlpha = 0,
|
||||
text = "Develop for Tablets is coming soon",
|
||||
textSize = 48,
|
||||
textAlign = "middleLeft"
|
||||
})
|
||||
end
|
||||
}
|
|
@ -138,8 +138,12 @@ controller.setup = function()
|
|||
setupPage(require("tevgit:core/dashboard/pages/home.lua"))
|
||||
setupPage(require("tevgit:core/dashboard/pages/apps.lua"))
|
||||
|
||||
if _DEVICE:sub(0,6) ~= "iPhone" then
|
||||
setupPage(require("tevgit:core/dashboard/pages/develop.lua"))
|
||||
if _DEVICE:sub(0, 6) ~= "iPhone" then
|
||||
if _DEVICE:sub(0, 4) == "iPad" then
|
||||
setupPage(require("tevgit:core/dashboard/pages/developTablet.lua"))
|
||||
else
|
||||
setupPage(require("tevgit:core/dashboard/pages/developDesktop.lua"))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
-- This is the main interface loaded into coreinterface
|
||||
|
||||
teverse.construct("guiFrame", {
|
||||
parent = teverse.coreInterface,
|
||||
size = guiCoord(1, 0, 0, 50),
|
||||
position = guiCoord(0, 0, 0, -50),
|
||||
backgroundColour = colour.black(),
|
||||
backgroundAlpha = 0.75
|
||||
})
|
||||
|
||||
local console = require("tevgit:core/teverseUI/console.lua")
|
||||
|
||||
local container = teverse.construct("guiFrame", {
|
||||
|
|
Loading…
Reference in New Issue