Fix system docs.

This commit is contained in:
bakpakin 2015-08-27 13:26:09 -04:00
parent 9834dfa9d6
commit d9d311d858

View File

@ -290,9 +290,9 @@ end
-- Processing Systems have three extra callbacks besides those inheritted from -- Processing Systems have three extra callbacks besides those inheritted from
-- vanilla Systems. -- 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: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 -- Processing Systems have their own `update` method, so don't implement a
-- a custom `update` callback for Processing Systems. -- a custom `update` callback for Processing Systems.