More work on properties

Added notify method to templateproperty's set method
Fixed names of subpropertyowners
This commit is contained in:
Alexander Bock
2014-08-31 16:08:19 +02:00
parent 9671921331
commit 5add1682d3
9 changed files with 20 additions and 12 deletions
+2
View File
@@ -78,6 +78,7 @@ SceneGraphNode* SceneGraphNode::createFromDictionary(const ghoul::Dictionary& di
<< result->name() << "'");
return nullptr;
}
result->addPropertySubOwner(result->_renderable);
LDEBUG("Successfully create renderable for '" << result->name() << "'");
}
if (dictionary.hasKey(keyEphemeris)) {
@@ -90,6 +91,7 @@ SceneGraphNode* SceneGraphNode::createFromDictionary(const ghoul::Dictionary& di
<< result->name() << "'");
return nullptr;
}
//result->addPropertySubOwner(result->_ephemeris);
LDEBUG("Successfully create ephemeris for '" << result->name() << "'");
}