summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-05-04 10:26:07 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-05-09 17:59:13 -0400
commitff99cefc647f9215ad1cdc9f408c9fc655b45706 (patch)
treea5e6c0a99af8c8b1c6cb1d3cdbcb4da350caae42
parent123192db10cdf5244f27d08256ece738f60a9e2c (diff)
downloadtherapy-ff99cefc647f9215ad1cdc9f408c9fc655b45706.tar.gz
therapy-ff99cefc647f9215ad1cdc9f408c9fc655b45706.tar.bz2
therapy-ff99cefc647f9215ad1cdc9f408c9fc655b45706.zip
Added a comment to TransformableComponent describing the ferrying stipulation
-rw-r--r--src/components/transformable.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/transformable.h b/src/components/transformable.h index 3296e49..6f3c2ef 100644 --- a/src/components/transformable.h +++ b/src/components/transformable.h
@@ -8,6 +8,12 @@ public:
8 8
9 /** 9 /**
10 * The coordinates of the entity. 10 * The coordinates of the entity.
11 *
12 * Note that ponderable entities sometimes have special behavior related to
13 * their coordinates, specifically that ferried bodies will behave oddly if
14 * their coordinates are changed outside of the PonderingSystem. Before doing
15 * so, use PonderingSystem::unferry on the body to ensure that it is not
16 * ferried.
11 */ 17 */
12 double x; 18 double x;
13 double y; 19 double y;