From: mfranz Date: Sun, 17 Jun 2007 21:01:40 +0000 (+0000) Subject: sooner than planned: fix "scale" animation offsets (1 -> 0) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8d3bf19422c15c12750bc8712763fd281a463167;p=simgear.git sooner than planned: fix "scale" animation offsets (1 -> 0) --- diff --git a/simgear/scene/model/animation.cxx b/simgear/scene/model/animation.cxx index 5e3ed63f..f6b12e6e 100644 --- a/simgear/scene/model/animation.cxx +++ b/simgear/scene/model/animation.cxx @@ -923,7 +923,7 @@ SGScaleAnimation::SGScaleAnimation(const SGPropertyNode* configNode, _condition = getCondition(); // default offset/factor for all directions - double offset = configNode->getDoubleValue("offset", 1); + double offset = configNode->getDoubleValue("offset", 0); double factor = configNode->getDoubleValue("factor", 1); std::string inputPropertyName;