mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-11 15:50:33 +00:00
PlayBackThisFrameInterpolation and all it required...
This commit is contained in:
parent
b2b750bc90
commit
e2bd3573b4
58 changed files with 662 additions and 11 deletions
|
@ -202,6 +202,21 @@ public:
|
|||
void CopyOnlyMatrix(CMatrix *other){
|
||||
m_matrix = other->m_matrix;
|
||||
}
|
||||
void SetUnity(void) {
|
||||
m_matrix.right.x = 1.0f;
|
||||
m_matrix.right.y = 0.0f;
|
||||
m_matrix.right.z = 0.0f;
|
||||
m_matrix.up.x = 0.0f;
|
||||
m_matrix.up.y = 1.0f;
|
||||
m_matrix.up.z = 0.0f;
|
||||
m_matrix.at.x = 0.0f;
|
||||
m_matrix.at.y = 0.0f;
|
||||
m_matrix.at.z = 1.0f;
|
||||
m_matrix.pos.x = 0.0f;
|
||||
m_matrix.pos.x = 0.0f;
|
||||
m_matrix.pos.y = 0.0f;
|
||||
m_matrix.pos.z = 0.0f;
|
||||
}
|
||||
};
|
||||
|
||||
inline CMatrix&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue