从 Cura 引擎(命令行)生成 g 代码时添加支持?

3D打印 ultimaker-cura g代码 支撑结构
2021-05-12 15:52:57

是否可以使用 Cura Engine(命令行工具)生成支持的 gcode?

这是我现在要做的:

CuraEngine slice -j /usr/share/cura/resources/definitions/ultimaker2.def.json -l my.stl -o my.gcode
1个回答

我在 fdrmprinter.def.json 中找到了它,您可以复制它并用于 -j 选项:

"support":
    {
        "label": "Support",
        "type": "category",
        "icon": "category_support",
        "description": "Support",
        "children":
        {
            "support_enable":
            {
                "label": "Enable Support",
                "description": "Enable support structures. These structures support$
                "type": "bool",
                "default_value": false,
                "settable_per_mesh": true,
                "settable_per_extruder": false
            }
        }
    }

将“support_enable”下的“default_value”更改为true,这样就可以了。