1
0
Fork 0
mirror of https://github.com/Reuh/ubiquitousse.git synced 2025-10-27 09:09:30 +00:00
This commit is contained in:
Étienne Fildadut 2022-09-16 20:01:07 +09:00
parent 5ee56f6aff
commit 77ece0b9a6
6 changed files with 519 additions and 2 deletions

View file

@ -62,12 +62,16 @@ ubiquitousse = {
-- @see ecs
ecs = nil,
--- Input management, if available.
-- TODO: not currently generated with LDoc.
-- TODO: documentation not currently generated with LDoc.
-- @see input
input = nil,
--- LDtk level import, if available.
-- @see ldtk
ldtk = nil,
--- glTF model import, if available.
-- TODO: documentation not currently generated with LDoc.
-- @see gltf
gltf = nil,
--- Scene management, if available.
-- @see scene
scene = nil,
@ -100,7 +104,7 @@ end
package.loaded[p] = ubiquitousse
-- Require external submodules
for _, m in ipairs{"signal", "asset", "ecs", "input", "scene", "timer", "util", "ldtk"} do
for _, m in ipairs{"signal", "asset", "ecs", "input", "scene", "timer", "util", "ldtk", "gltf"} do
local s, t = pcall(require, p.."."..m)
if s then
ubiquitousse[m] = t