You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/PipeECS.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ This Pipe module contains a complete [ECS](https://en.wikipedia.org/wiki/Entity_
6
6
There are similarities with other well-known ECS systems like [entt](https://github.com/skypjack/entt) but this implementation has some key differences.
7
7
## Architecture
8
8
Of *Entity-Component-System*, Pipe has **Ids** (*entities*) and **Components** (*components*).
9
+
Ids are identifiers without data, and Components are data structures bound to an Id.
9
10
10
11
It does not implement or dictate any specific way to do logic (*systems*).
11
12
However, it does provide efficient filtering and iteration of ids that you can use in your logic.
@@ -22,7 +23,7 @@ Each component type is stored closely together in a "**pool**". This makes itera
22
23
23
24
If we think about it as memory, its closer to this:
0 commit comments