diff --git a/config.ld b/config.ld index b38d57b..bb0b77e 100644 --- a/config.ld +++ b/config.ld @@ -3,7 +3,7 @@ title = "Ubiquitousse reference" description = "Ubiquitousse game development tools" full_description = [[Set of Lua libraries to make game development easier using the [LÖVE](https://love2d.org/) game framework. -See [main module](modules/init.html) for more information, or the [GitHub page](https://github.com/Reuh/ubiquitousse) for the source. +See [main module](modules/ubiquitousse.html) for more information, or the [GitHub page](https://github.com/Reuh/ubiquitousse) for the source. ]] --package = "ubiquitousse" @@ -31,4 +31,14 @@ custom_display_name_handler = function(item, default_handler) end topics = { "README.md", "LICENSE" } -file = { "init.lua", "ldtk/ldtk.can", "ecs/ecs.can", "asset/asset.lua" } +file = { + "init.lua", + "asset/asset.lua", + "ecs/ecs.can", + -- TODO: input + "ldtk/ldtk.can", + "scene/scene.lua", + "signal/signal.can", + "timer/timer.lua", + "util/util.lua" +} diff --git a/docs/index.html b/docs/index.html index 7245e3a..7d9c4f5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,9 +33,13 @@
Set of Lua libraries to make game development easier using the LÖVE game framework.
-See main module for more information, or the GitHub page for the source.
+See main module for more information, or the GitHub page for the source.
| Ubiquitousse main module. | |||
| ldtk | -LDtk level importer for Lua and drawing using LÖVE. | +asset | +Asset manager. |
| ecs | @@ -70,8 +74,24 @@|||
| asset | -Asset manager. | +ldtk | +LDtk level importer for Lua and drawing using LÖVE. | +
| scene | +Scene management. | +||
| signal | +Signal management. | +||
| timer | +Time related functions. | +||
| util | +Various functions useful for game developement. |