From: Thomas Geymayer Date: Wed, 26 Feb 2014 16:48:11 +0000 (+0100) Subject: animation: fix for 'textrapezoid' animation outside 'texmultiple'. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=91b92c5613af74706c045ea68507ceba558a5476;p=simgear.git animation: fix for 'textrapezoid' animation outside 'texmultiple'. --- 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") {