From 8d3bf19422c15c12750bc8712763fd281a463167 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 17 Jun 2007 21:01:40 +0000 Subject: [PATCH] sooner than planned: fix "scale" animation offsets (1 -> 0) --- simgear/scene/model/animation.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5