Z2SoundObject, JAUSoundAnimator OK, work on Z2SoundHandles (#1968)

* d_a_tag_evtarea mostly done, work on d_a_npc

* work on d_a_npc_ash

* work on Z2SoundHandles

* Z2SoundObject, JAUSoundAnimator OK

* Update Progress.md

---------

Co-authored-by: randomsalience <randomsalience@gmail.com>
This commit is contained in:
randomsalience
2023-10-26 15:41:03 +03:00
committed by GitHub
co-authored by randomsalience
parent e2d51bf956
commit b13ff9e3d0
46 changed files with 672 additions and 2539 deletions
+10
View File
@@ -122,6 +122,16 @@ struct TVec3<f32> {
};
}
inline TVec3<f32>& operator=(const Vec& b) {
setTVec3f(&b.x, &this->x);
return *this;
}
// inline TVec3<f32>& operator=(const TVec3<f32>& b) {
// setTVec3f(&b.x, &this->x);
// return *this;
// }
inline TVec3<f32>& operator+=(const TVec3<f32>& b) {
add(b);
return *this;