Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-02-25 16:56:25 +0000
committerStijn Buys <ingar@osirion.org>2012-02-25 16:56:25 +0000
commite10c0a7602c612993e6b99348bab507b7def0881 (patch)
tree2d863e946024fc3560221bedcddb149b253b4918 /src/entityproperties.cc
parent01f671303b75f3e4c683e3ff47b7ee120f0cda12 (diff)
Add entity manipulator widget, added support for editing entity angles.
Diffstat (limited to 'src/entityproperties.cc')
-rw-r--r--src/entityproperties.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entityproperties.cc b/src/entityproperties.cc
index 429b759..bdc2394 100644
--- a/src/entityproperties.cc
+++ b/src/entityproperties.cc
@@ -73,6 +73,10 @@ void EntityProperties::save(QTextStream &textstream)
save_comment(textstream, "location");
textstream << "location=" << location().x() << " " << location().y() << " " << location().z() << '\n';
+ // angles
+ save_comment(textstream, "angles");
+ textstream << "angles=" << angles().x() << " " << angles().y() << " " << angles().z() << '\n';
+
// radius
save_comment(textstream, "radius");
if (radius()) {