From 91b92c5613af74706c045ea68507ceba558a5476 Mon Sep 17 00:00:00 2001 From: Thomas Geymayer Date: Wed, 26 Feb 2014 17:48:11 +0100 Subject: [PATCH] animation: fix for 'textrapezoid' animation outside 'texmultiple'. --- 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 a3ebc774..7bb6cf45 100644 --- a/simgear/scene/model/animation.cxx +++ b/simgear/scene/model/animation.cxx @@ -418,7 +418,7 @@ SGAnimation::animate(osg::Node* node, const SGPropertyNode* configNode, SGShaderAnimation animInst(configNode, modelRoot, options); animInst.apply(node); } else if (type == "textranslate" || type == "texrotate" || - type == "texmultiple") { + type == "textrapezoid" || type == "texmultiple") { SGTexTransformAnimation animInst(configNode, modelRoot); animInst.apply(node); } else if (type == "timed") { -- 2.39.5