SetSoundPitch method
Implementation
@override
void SetSoundPitch(
SoundD sound,
num pitch,
) => run(
() => RaylibDebugLabels.SetSoundPitch(sound, pitch),
() => rl.Audio.SetSoundPitch(
rl.Temp.Sound$.Ref1(sound).ref,
pitch.toDouble(),
),
);