From cb81a50752ceb6a0781761723224e50bef1457a4 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 1 Sep 2022 20:36:55 +0200 Subject: [PATCH] - Blood vel wrappers. --- source/core/coreactor.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index 8c5d46064..4dec240be 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -216,6 +216,40 @@ public: return { FixedToFloat(vel.X), FixedToFloat(vel.Y), FixedToFloat(vel.Z) }; } + vec3_t int_vel() const + { + return vel; + } + + void set_int_bvel_x(int x) + { + vel.X = x; + } + + void set_int_bvel_y(int x) + { + vel.Y = x; + } + + void set_int_bvel_z(int x) + { + vel.Z = x; + } + + void add_int_bvel_x(int x) + { + vel.X += x; + } + + void add_int_bvel_y(int x) + { + vel.Y += x; + } + + void add_int_bvel_z(int x) + { + vel.Z += x; + } // Same as above but with inverted y and z axes to match the renderer's coordinate system.