Skip to contents

Export wave data to file, returns true on success.

Usage

export_wave(wave, file_name)

Arguments

wave

A wave.

file_name

A string.

Value

A logical

Note

This function has been auto-generated from the following Raylib function definition:

bool ExportWave(Wave wave, const char * fileName);

Examples

if (FALSE) {
export_wave(load_wave("sound.wav"), "file.png")
}