From 72101825d33a6ec83f4ddd9d7ee8cdbf3003d469 Mon Sep 17 00:00:00 2001 From: Leif Elliott <69766831+JustLeif@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:48:13 -0400 Subject: [PATCH] doc fix: post instead of pre. (#2978) --- site/docs/05-entity-component-system/05.3-systems.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/05-entity-component-system/05.3-systems.mdx b/site/docs/05-entity-component-system/05.3-systems.mdx index 71770ae1e..c57bb1b96 100644 --- a/site/docs/05-entity-component-system/05.3-systems.mdx +++ b/site/docs/05-entity-component-system/05.3-systems.mdx @@ -48,7 +48,7 @@ Systems execute in this order * Run setup code for the update 4. every frame `update(delta: number)` * Update all your entities here -5. every frame `preupdate(scene: Scene, elapsedMs: number)` +5. every frame `postupdate(scene: Scene, elapsedMs: number)` * Run cleanup code for the update ## Built in Systems