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-19 21:52:48 +0000
committerStijn Buys <ingar@osirion.org>2012-02-19 21:52:48 +0000
commitc3afc2172e6a272e330ae6c2a3aad377eb876ba9 (patch)
tree8d0469a1b6c75947aab45a00a84a2a405c985863 /src/editorwindow.cc
parent84f9c2b6e31c46d7d692224c36bd42bcd969a5f2 (diff)
Added entity ino .ext area
Diffstat (limited to 'src/editorwindow.cc')
-rw-r--r--src/editorwindow.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editorwindow.cc b/src/editorwindow.cc
index 65a84e6..5ae0be8 100644
--- a/src/editorwindow.cc
+++ b/src/editorwindow.cc
@@ -137,6 +137,9 @@ bool EditorWindow::loadFile(const QString &filename)
} else if (ini.got_key_float("radius", f)) {
entity->properties()->set_radius(f);
+
+ } else if (ini.got_key_string("info", str)) {
+ entity->properties()->add_info(str);
} else if (ini.got_key()) {
entity->properties()->add_value(ini.key(), ini.value());