From 6c2b0a5629afed2919055f304e9edac69b71334f Mon Sep 17 00:00:00 2001 From: bakpakin Date: Fri, 19 Jun 2015 19:46:06 -0400 Subject: [PATCH] Update some documentation. --- doc/index.html | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/doc/index.html b/doc/index.html index f491aa6..ade3e39 100644 --- a/doc/index.html +++ b/doc/index.html @@ -363,14 +363,12 @@ end Systems process each entity individual, and are usually what is needed. Processing Systems have three extra callbacks besides those inheritted from vanilla Systems.

-
 * <code>function system:preProcess(entities, dt)</code> - Called before iterating
-
-

over each Entity.

-
 * <code>function system:process(entities, dt)</code> - Called for each Entity in
-
-

the System.

-
 * <code>function system:postProcess(entity, dt)</code> - Called after iteration.
+
+
 function system:preProcess(entities, dt) -- Called before iteration.
+ function system:process(entities, dt) -- Process each entity.
+ function system:postProcess(entity, dt) -- Called after iteration.
 
+

Processing Systems have their own update method, so don't implement a a custom update callback for Processing Systems. @@ -654,7 +652,7 @@ end

generated by LDoc 1.4.3 -Last updated 2015-06-19 19:27:22 +Last updated 2015-06-19 19:45:33