UpdateSound method
Implementation
@override
void UpdateSound(
SoundD sound,
TypedDataList data,
num sampleCount,
) => run(
() => RaylibDebugLabels.UpdateSound(sound, data, sampleCount),
() => rl.Temp.Sound$.RefUpdate1(sound,
(p) => rl.Audio.UpdateSound.run3(
p.toJS,
rl.Temp.TypedDataList$.Array(data).toJS,
sampleCount.toJS,
),
),
);