diff --git a/examples/osgmovie/osgmovie.cpp b/examples/osgmovie/osgmovie.cpp index 70c97807c..7ce632cbb 100644 --- a/examples/osgmovie/osgmovie.cpp +++ b/examples/osgmovie/osgmovie.cpp @@ -428,11 +428,14 @@ int main(int argc, char** argv) if (image) { + osg::notify(osg::NOTICE)<<"image->s()"<s()<<" image-t()="<t()<addDrawable(myCreateTexturedQuadGeometry(pos,image->s(),image->t(),image, useTextureRectangle, xyPlane, flip)); bottomright = pos + osg::Vec3(static_cast(image->s()),static_cast(image->t()),0.0f); - pos.y() += image->t()*1.5f; + if (xyPlane) pos.y() += image->t()*1.05f; + else pos.z() += image->t()*1.05f; } else {