mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 17:19:31 +00:00
Update and rebuild docs
This commit is contained in:
parent
21679dde5c
commit
7ad5c2d641
19 changed files with 3026 additions and 949 deletions
|
|
@ -43,6 +43,7 @@
|
|||
<li><a href="../modules/ubiquitousse.html">ubiquitousse</a></li>
|
||||
<li><a href="../modules/asset.html">asset</a></li>
|
||||
<li><a href="../modules/ecs.html">ecs</a></li>
|
||||
<li><a href="../modules/input.html">input</a></li>
|
||||
<li><a href="../modules/ldtk.html">ldtk</a></li>
|
||||
<li><a href="../modules/scene.html">scene</a></li>
|
||||
<li><a href="../modules/signal.html">signal</a></li>
|
||||
|
|
@ -54,7 +55,7 @@
|
|||
|
||||
<div id="content">
|
||||
|
||||
Copyright 2021 Étienne “Reuh” Fildadut</p>
|
||||
Copyright 2016-2022 Étienne “Reuh” Fildadut</p>
|
||||
|
||||
<p>Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.</p>
|
||||
|
||||
|
|
@ -64,7 +65,7 @@
|
|||
</div> <!-- id="main" -->
|
||||
<div id="about">
|
||||
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
|
||||
<i style="float:right;">Last updated 2021-12-27 17:22:39 </i>
|
||||
<i style="float:right;">Last updated 2022-09-16 20:07:07 </i>
|
||||
</div> <!-- id="about" -->
|
||||
</div> <!-- id="container" -->
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@
|
|||
<li><a href="../modules/ubiquitousse.html">ubiquitousse</a></li>
|
||||
<li><a href="../modules/asset.html">asset</a></li>
|
||||
<li><a href="../modules/ecs.html">ecs</a></li>
|
||||
<li><a href="../modules/input.html">input</a></li>
|
||||
<li><a href="../modules/ldtk.html">ldtk</a></li>
|
||||
<li><a href="../modules/scene.html">scene</a></li>
|
||||
<li><a href="../modules/signal.html">signal</a></li>
|
||||
|
|
@ -56,7 +57,22 @@
|
|||
|
||||
<h1>ubiquitousse</h1>
|
||||
|
||||
<p>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.</p>
|
||||
<p>Set of various libraries I use for game development, mainly with LÖVE. Most of which has already been done before, but these are tailored to what I need. They can be used independently too (you should be able to only pick the directories of the libraries you need; some modules depends on each other though, see documentation for details).</p>
|
||||
|
||||
<p>This provides, sorting the one with the fewest existing alterative as far as I know first:</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="../modules/ldtk.html#">ldtk</a> provides a <a href="https://ldtk.io/">LDtk</a> level importer</li>
|
||||
<li><code>gltf</code> provides a <a href="https://www.khronos.org/gltf/">glTF</a> model loader</li>
|
||||
<li><a href="../modules/ecs.html#">ecs</a> provides <a href="https://en.wikipedia.org/wiki/Entity_component_system">ECS</a> facilities</li>
|
||||
<li><a href="../modules/input.html#">input</a> provides input management facilities</li>
|
||||
<li><a href="../modules/timer.html#">timer</a> provides time management facilities</li>
|
||||
<li><a href="../modules/signal.html#">signal</a> provides a simple signal / observer pattern implementation</li>
|
||||
<li><a href="../modules/asset.html#">asset</a> provides barebones asset loading facilities</li>
|
||||
<li><a href="../modules/scene.html#">scene</a> provides some scene management facilities</li>
|
||||
<li><a href="../modules/util.html#">util</a> provides some random, occasionally useful functions</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<p>You can find the documentation <a href="https://reuh.github.io/ubiquitousse/index.html">here</a> or in the <code>docs/</code> directory.</p>
|
||||
|
||||
|
|
@ -64,14 +80,14 @@
|
|||
|
||||
<p>Whatever is currently on the master branch should be working and usable. Changelog, including breaking changes, are documented in commit messages.</p>
|
||||
|
||||
<p>Licensed under ISC (equivalent to MIT/Expat/Simplified BSD).</p>
|
||||
<p>Licensed under ISC (equivalent to MIT/Expat/Simplified BSD). Have fun.</p>
|
||||
|
||||
|
||||
</div> <!-- id="content" -->
|
||||
</div> <!-- id="main" -->
|
||||
<div id="about">
|
||||
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
|
||||
<i style="float:right;">Last updated 2021-12-27 17:22:39 </i>
|
||||
<i style="float:right;">Last updated 2022-09-16 20:07:07 </i>
|
||||
</div> <!-- id="about" -->
|
||||
</div> <!-- id="container" -->
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue