mirror of
https://github.com/zeldaret/tp
synced 2026-06-06 11:47:28 -04:00
12eb254d76
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
16 lines
321 B
C++
16 lines
321 B
C++
#include "JSystem/JAudio2/JAISoundChild.h"
|
|
#include "JSystem/JAudio2/JASTrack.h"
|
|
|
|
void JAISoundChild::init() {
|
|
mMove.init();
|
|
mParams.init();
|
|
}
|
|
|
|
void JAISoundChild::mixOut(JASTrack* pTrack) {
|
|
mParams = mMove.mParams;
|
|
pTrack->assignExtBuffer(0, &mParams);
|
|
}
|
|
|
|
void JAISoundChild::calc() {
|
|
mMove.calc();
|
|
} |