Multi-Color 3MF Export

Export your models as multi-color 3MF files. Assign colors to parts and print with Bambu Lab multi-material support.

Multi-Color 3MF Export

3MF Format

3MF is the modern standard for 3D printing files. Unlike STL, 3MF supports multiple materials, colors, and metadata in a single file. daz-cad generates 3MF files that are ready to slice in Bambu Studio.

Multi-Color Printing

Assign colors to different parts of your model using the .color() method. When exported to 3MF, each color becomes a separate material that your slicer can assign to different filaments.

let base = box(40, 40, 5).color("#2196F3");
let lid = box(40, 40, 2)
    .translate(0, 0, 5)
    .color("#FF5722");

let result = base.union(lid);

Export Options

Try Multi-Color 3MF Export in the browser editor

Open Editor