X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fvehicle.cpp;h=0bd57e95da2b80d276fdf82cef0015649dc1d53d;hb=a993f204ba2cd282637814caec3ab115040fc0cc;hp=8e3da138cf4388c2a7b556fb5bc09490daa85bff;hpb=d18d5c1c3cf417e20840238eec4f3caa431fa2b5;p=r2c2.git diff --git a/source/3d/vehicle.cpp b/source/3d/vehicle.cpp index 8e3da13..0bd57e9 100644 --- a/source/3d/vehicle.cpp +++ b/source/3d/vehicle.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010-2011 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #include #include #include @@ -102,7 +95,10 @@ void Vehicle3D::setup_render(GL::Renderer &renderer, const GL::Tag &) const GL::Matrix matrix; const Vector &pos = vehicle.get_position(); matrix.translate(pos.x, pos.y, pos.z); - matrix.rotate(vehicle.get_direction(), 0, 0, 1); + float dir = vehicle.get_direction(); + if(vehicle.get_type().get_rotate_object()) + dir += M_PI; + matrix.rotate(dir, 0, 0, 1); renderer.matrix_stack() *= matrix; }