在PrusaSlicer中,可以通过自定义Gcode代码,设置不同层高时的温度,代码非常简单,比起手动设置要方便很多。
以温度塔为例,只要在 打印机设置-》自定义Gcode-》Before Layer Change Gcode中添加,就大功告成啦!
{if layer_z < 7.6}M104 S260
{elsif layer_z < 14.2}M104 S255
{elsif layer_z < 20.4}M104 S250
{elsif layer_z < 27}M104 S245
{elsif layer_z < 33.6}M104 S240
{elsif layer_z < 40.2}M104 S235
{elsif layer_z < 46.8}M104 S230
{elsif layer_z < 53.6}M104 S225
{elsif layer_z < 60.2}M104 S220
{endif}