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