Merge branch 'miami' of github.com:GTAmodding/re3 into miami

This commit is contained in:
aap
2020-06-01 18:05:24 +02:00
25 changed files with 663 additions and 148 deletions

View File

@ -261,6 +261,14 @@ public:
m_matrix.at.y = 0.0f;
m_matrix.at.z = 1.0f;
}
void SetTranslateOnly(float x, float y, float z) {
m_matrix.pos.x = x;
m_matrix.pos.y = y;
m_matrix.pos.z = z;
}
void SetTranslateOnly(const CVector& pos) {
SetTranslateOnly(pos.x, pos.y, pos.z);
}
};