SetAudioStreamPitch method

  1. @override
void SetAudioStreamPitch(
  1. AudioStreamD stream,
  2. num pitch
)
override

Implementation

@override
void SetAudioStreamPitch(
  AudioStreamD stream,
  num pitch,
) => run(
  () => RaylibDebugLabels.SetAudioStreamPitch(stream, pitch),
  () => rl.Audio.SetAudioStreamPitch(
    rl.Temp.AudioStream$.Ref1(stream).ref,
    pitch.toDouble(),
  ),
);