Deploying to gh-pages from @ Keyslam-Group/Concord@a80077276d 🚀

This commit is contained in:
pablomayobre 2023-02-15 01:21:05 +00:00
parent a09aa91a13
commit 2a34adcf0f
12 changed files with 523 additions and 125 deletions

View file

@ -40,8 +40,8 @@
<ul class="nowrap">
<li><a href="../classes/Component.html">Component</a></li>
<li><a href="../classes/Entity.html">Entity</a></li>
<li><a href="../classes/Filter.html">Filter</a></li>
<li><a href="../classes/List.html">List</a></li>
<li><a href="../classes/Pool.html">Pool</a></li>
<li><a href="../classes/System.html">System</a></li>
<li><strong>World</strong></li>
</ul>
@ -76,6 +76,10 @@
<td class="summary">Adds an Entity to the World.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:newEntity">World:newEntity ()</a></td>
<td class="summary">Creates a new Entity and adds it to the World.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:removeEntity">World:removeEntity (e)</a></td>
<td class="summary">Removes an Entity from the World.</td>
</tr>
@ -104,14 +108,6 @@
<td class="summary">Removes all entities from the World</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:hasName">World:hasName ()</a></td>
<td class="summary">Returns true if the World has a name.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:getName">World:getName ()</a></td>
<td class="summary">Returns the name of the World.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:onEntityAdded">World:onEntityAdded (e)</a></td>
<td class="summary">Callback for when an Entity is added to the World.</td>
</tr>
@ -119,6 +115,14 @@
<td class="name" nowrap><a href="#World:onEntityRemoved">World:onEntityRemoved (e)</a></td>
<td class="summary">Callback for when an Entity is removed from the World.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:setResource">World:setResource (name, resource)</a></td>
<td class="summary">Sets a named resource in the world</td>
</tr>
<tr>
<td class="name" nowrap><a href="#World:getResource">World:getResource (name)</a></td>
<td class="summary">Gets a named resource from the world</td>
</tr>
</table>
<br/>
@ -174,6 +178,26 @@
</dd>
<dt>
<a name = "World:newEntity"></a>
<strong>World:newEntity ()</strong>
</dt>
<dd>
Creates a new Entity and adds it to the World.
<h3>Returns:</h3>
<ol>
<span class="types"><a class="type" href="../classes/Entity.html#">Entity</a></span>
e the new Entity
</ol>
</dd>
<dt>
<a name = "World:removeEntity"></a>
@ -371,46 +395,6 @@
</dd>
<dt>
<a name = "World:hasName"></a>
<strong>World:hasName ()</strong>
</dt>
<dd>
Returns true if the World has a name.
<h3>Returns:</h3>
<ol>
<span class="types"><span class="type">boolean</span></span>
</ol>
</dd>
<dt>
<a name = "World:getName"></a>
<strong>World:getName ()</strong>
</dt>
<dd>
Returns the name of the World.
<h3>Returns:</h3>
<ol>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.1/manual.html#5.4">string</a></span>
</ol>
</dd>
<dt>
<a name = "World:onEntityAdded"></a>
@ -453,6 +437,64 @@
</dd>
<dt>
<a name = "World:setResource"></a>
<strong>World:setResource (name, resource)</strong>
</dt>
<dd>
Sets a named resource in the world
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">name</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.1/manual.html#5.4">string</a></span>
Name of the resource
</li>
<li><span class="parameter">resource</span>
<span class="types"><span class="type">Any</span></span>
Resource to set
</li>
</ul>
<h3>Returns:</h3>
<ol>
<span class="types"><a class="type" href="../classes/World.html#">World</a></span>
self
</ol>
</dd>
<dt>
<a name = "World:getResource"></a>
<strong>World:getResource (name)</strong>
</dt>
<dd>
Gets a named resource from the world
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">name</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.1/manual.html#5.4">string</a></span>
Name of the resource
</li>
</ul>
<h3>Returns:</h3>
<ol>
<span class="types"><span class="type">Any</span></span>
resource
</ol>
</dd>
</dl>
@ -461,7 +503,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 2022-10-17 19:53:58 </i>
<i style="float:right;">Last updated 2023-02-15 01:21:04 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>