From ad765772e82bad66a36e1c4d573124e5367bc181 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Thu, 27 Aug 2015 13:28:32 -0400 Subject: [PATCH] Update doc with fix for ProcessingSystems. --- doc/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/index.html b/doc/index.html index 7501c6c..59652b4 100644 --- a/doc/index.html +++ b/doc/index.html @@ -371,9 +371,9 @@ end Processing Systems have three extra callbacks besides those inheritted from vanilla Systems.

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

Processing Systems have their own update method, so don't implement a @@ -678,7 +678,7 @@ end

generated by LDoc 1.4.3 -Last updated 2015-08-05 21:02:28 +Last updated 2015-08-27 13:26:26