mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 09:39:48 -04:00
6f96e66518
* some JAudio work * audio cleanup checkpoint * checkpoint more audio cleanup * fix symbols * more z2 cleanup * fix regression * fix build * some fixes
19 lines
371 B
C++
19 lines
371 B
C++
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
|
|
|
#include "JSystem/JAudio2/JAISoundChild.h"
|
|
#include "JSystem/JAudio2/JASTrack.h"
|
|
|
|
void JAISoundChild::init() {
|
|
mMove.init();
|
|
mParams.init();
|
|
}
|
|
|
|
void JAISoundChild::mixOut(JASTrack* track) {
|
|
mParams = mMove.params_;
|
|
track->assignExtBuffer(0, &mParams);
|
|
}
|
|
|
|
void JAISoundChild::calc() {
|
|
mMove.calc();
|
|
}
|