- Blood vel wrappers.

This commit is contained in:
Christoph Oelckers 2022-09-01 20:36:55 +02:00
parent a5a04b1123
commit cb81a50752

View file

@ -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.