blob: 81944b0d86bd7ae9cc9db82ef01878f9226a1d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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();
}
|