Completed timeline class Json methods, with all child properties... and refactored many unneeded properties away.

This commit is contained in:
Jonathan Thomas
2014-01-05 22:37:11 -06:00
parent b3faf4951f
commit f25f342825
16 changed files with 194 additions and 93 deletions

View File

@@ -296,7 +296,7 @@ void Keyframe::SetJsonValue(Json::Value root) {
Points.clear();
if (root["Points"] != Json::nullValue)
// loop through points, and find a matching coordinate
// loop through points
for (int x = 0; x < root["Points"].size(); x++) {
// Get each point
Json::Value existing_point = root["Points"][x];