From e10c0a7602c612993e6b99348bab507b7def0881 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 25 Feb 2012 16:56:25 +0000 Subject: Add entity manipulator widget, added support for editing entity angles. --- src/entityproperties.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/entityproperties.cc') 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()) { -- cgit v1.2.3