Fixed a few issues with Color keyframes

This commit is contained in:
Jonathan Thomas
2015-10-01 18:51:59 -05:00
parent af3ad48455
commit ac7be90544
3 changed files with 4 additions and 3 deletions

View File

@@ -136,5 +136,5 @@ void Color::SetJsonValue(Json::Value root) {
if (!root["blue"].isNull())
blue.SetJsonValue(root["blue"]);
if (!root["alpha"].isNull())
blue.SetJsonValue(root["alpha"]);
alpha.SetJsonValue(root["alpha"]);
}