From 5b59ae335b7eddfb063665003f413fa00e66478e Mon Sep 17 00:00:00 2001 From: Trevor Lovell Date: Thu, 28 Dec 2023 11:24:23 -0700 Subject: [PATCH] docs: reorganize introductory sentence to flow better --- book/src/explanation/anatomy-of-the-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/explanation/anatomy-of-the-world.md b/book/src/explanation/anatomy-of-the-world.md index 4c6c498c..9c255126 100644 --- a/book/src/explanation/anatomy-of-the-world.md +++ b/book/src/explanation/anatomy-of-the-world.md @@ -1,5 +1,5 @@ # Anatomy of the World -Once an [`LdtkWorldBundle`](https://docs.rs/bevy_ecs_ldtk/0.8.0/bevy_ecs_ldtk/prelude/struct.LdtkWorldBundle.html) is spawned, the associated assets are loaded, and [levels are selected](level-selection.md), the level spawning process begins. +Once an [`LdtkWorldBundle`](https://docs.rs/bevy_ecs_ldtk/0.8.0/bevy_ecs_ldtk/prelude/struct.LdtkWorldBundle.html) is spawned, [levels are selected](level-selection.md), and the associated assets finish loading, the level spawning process begins. The result is a deeply nested hierarchy of entities which can be difficult to navigate, but predictable. It can be useful to write code that makes assumptions about the relationships between `bevy_ecs_ldtk` entities. To assist with this, this chapter will explain the anatomy of a `bevy_ecs_ldtk` world.