mirror of
https://github.com/bakpakin/tiny-ecs.git
synced 2024-11-17 04:44:23 +00:00
Fix system docs.
This commit is contained in:
parent
9834dfa9d6
commit
d9d311d858
4
tiny.lua
4
tiny.lua
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user