Skip to contents

Export mesh data to file, returns true on success.

Usage

export_mesh(mesh, file_name)

Arguments

mesh

A mesh.

file_name

A string.

Value

A logical

Note

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

bool ExportMesh(Mesh mesh, const char * fileName);

Examples

if (FALSE) {
export_mesh(gen_mesh_cube(1.0, 1.0, 1.0), "file.png")
}