diff --git a/README.md b/README.md index f31f933..069e893 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ Set of various libraries I use for game development, mainly with LÖVE. Nothing that hasn't been done before, but these are tailored to what I need. They can be used independently too. -Documentation is done in LDoc-like comments in source files, but LDoc doesn't really like how I structure my libraries so you can't really generate documentation with it. I'm currently trying to fix this; some modules already have a working LDoc documentation that you can read [here](https://reuh.github.io/ubiquitousse/index.html) or in the `docs/` directory. +You can find the documentation [here](https://reuh.github.io/ubiquitousse/index.html) or in the `docs/` directory. + +Documentation is done in LDoc-like comments in source files, but LDoc doesn't really like how I structure my libraries (and the fact I use [Candran](https://github.com/Reuh/candran)) so you will need my [LDoc fork](https://github.com/Reuh/LDoc) if you want to generate the documentation yourself. Whatever is currently on the master branch should be working and usable. Changelog, including breaking changes, are documented in commit messages. diff --git a/asset/README.md b/asset/README.md index bfe0f0f..930ba14 100644 --- a/asset/README.md +++ b/asset/README.md @@ -1,6 +1,6 @@ # ubiquitousse.asset -Asset manager library. +Asset manager library for Lua. You can read the documentation [here](https://reuh.github.io/ubiquitousse/modules/asset.html). diff --git a/asset/asset.lua b/asset/asset.lua index 91e3be0..b36b396 100644 --- a/asset/asset.lua +++ b/asset/asset.lua @@ -1,4 +1,4 @@ ---- Asset manager. +--- Asset manager for Lua. -- -- Loads asset and cache them. -- @@ -8,6 +8,8 @@ -- -- No dependencies. -- @module asset +-- @usage +-- TODO --- Asset manager. -- @type Asset diff --git a/docs/index.html b/docs/index.html index f7bbfd8..5360958 100644 --- a/docs/index.html +++ b/docs/index.html @@ -65,13 +65,11 @@
Entity Component System library, inspired by the excellent tiny-ecs.