Add delta time stuff

This commit is contained in:
Ben Visness
2018-05-28 12:31:17 -05:00
parent 373e9517b4
commit ba5982b2a9
4 changed files with 34 additions and 9 deletions

View File

@@ -2043,6 +2043,11 @@ HMM_INLINE hmm_mat4 &operator*=(hmm_mat4 &Left, float Right)
return (Left = Left * Right);
}
HMM_INLINE hmm_quaternion &operator*=(hmm_quaternion &Left, hmm_quaternion Right)
{
return (Left = Left * Right);
}
HMM_INLINE hmm_quaternion &operator*=(hmm_quaternion &Left, float Right)
{
return (Left = Left * Right);