diff options
author | Zack Mulgrew <zack@zackthehuman.com> | 2016-02-03 23:50:09 -0800 |
---|---|---|
committer | Zack Mulgrew <zack@zackthehuman.com> | 2016-02-03 23:50:09 -0800 |
commit | 55fc21ca701f333552c9ef9882661ec3f86bd237 (patch) | |
tree | 46ee0e1999590c9862d03c1b826c4b0dc0a3881b | |
parent | 070cd89d2ed140594608d252318f444202579a52 (diff) |
Update README to reflect how components are removed before entity destruction
-rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -119,13 +119,13 @@ To that end Components are typically [POD types](http://en.wikipedia.org/wiki/Pl As an example, position and direction information might be represented as: ```c++ -struct Position { +struct Position : public entityx::Component<Position> { Position(float x = 0.0f, float y = 0.0f) : x(x), y(y) {} float x, y; }; -struct Direction { +struct Direction : public entityx::Component<Direction> { Direction(float x = 0.0f, float y = 0.0f) : x(x), y(y) {} float x, y; @@ -224,7 +224,7 @@ As an example, we might want to implement a very basic collision system using ou First, we define the event type, which for our example is simply the two entities that collided: ```c++ -struct Collision { +struct Collision : public entityx::Component<Collision> { Collision(entityx::Entity left, entityx::Entity right) : left(left), right(right) {} entityx::Entity left, right; @@ -290,6 +290,7 @@ Several events are emitted by EntityX itself: - Event objects are destroyed after delivery, so references should not be retained. - A single class can receive any number of types of events by implementing a ``receive(const EventType &)`` method for each event type. - Any class implementing `Receiver` can receive events, but typical usage is to make `System`s also be `Receiver`s. +- When an `Entity` is destroyed it will cause all of its components to be removed. This triggers `ComponentRemovedEvent`s to be triggered for each of its components. These events are triggered before the `EntityDestroyedEvent`. ### Manager (tying it all together) |