mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-21 03:01:36 +00:00
- removed set_int_pos wrapper
This commit is contained in:
parent
70d0b2ea93
commit
681784fdf8
2 changed files with 0 additions and 9 deletions
|
@ -91,11 +91,6 @@ public:
|
|||
spr.pos += { add.X* inttoworld, add.Y* inttoworld, add.Z* zinttoworld };
|
||||
}
|
||||
|
||||
void set_int_pos(const vec3_t& add)
|
||||
{
|
||||
spr.pos = { add.X* inttoworld, add.Y* inttoworld, add.Z* zinttoworld };
|
||||
}
|
||||
|
||||
constexpr int int_ang() const
|
||||
{
|
||||
return spr.angle.Buildang();
|
||||
|
|
|
@ -527,10 +527,6 @@ struct tspritetype : public spritetypebase
|
|||
DCoreActor* ownerActor;
|
||||
int time;
|
||||
|
||||
void set_int_pos(const vec3_t& ipos)
|
||||
{
|
||||
pos = { ipos.X * inttoworld, ipos.Y * inttoworld, ipos.Z * zinttoworld };
|
||||
}
|
||||
void add_int_x(int x)
|
||||
{
|
||||
pos.X += x * inttoworld;
|
||||
|
|
Loading…
Reference in a new issue