From 94311f9c4e82b7475802b1934cc0c5b243e0cd2f Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 3 Mar 2021 00:08:47 +0000 Subject: Replace Transform with Location Simpler, unbinds the transformation matrices for location, now done just in the shader. --- game/vehicles/vehicle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'game/vehicles/vehicle.h') diff --git a/game/vehicles/vehicle.h b/game/vehicles/vehicle.h index 228f15a..a511d3c 100644 --- a/game/vehicles/vehicle.h +++ b/game/vehicles/vehicle.h @@ -1,10 +1,10 @@ #ifndef VEHICLE_H #define VEHICLE_H -#include "gfx/gl/transform.h" #include #include #include +#include #include #include #include @@ -28,7 +28,7 @@ public: float linkDist; // distance long current link float speed {50}; // speed in m/s (~75 km/h) - Transform location; + Location location; protected: LinkHistory linkHist; -- cgit v1.2.3