Notifications
Clear all
RE: How to increase max print height over 1200mm
Hello,
as far as I can see this is not possible. There is a maximum of 1200 defined in the sourcecode: https://github.com/prusa3d/PrusaSlicer/blob/5dc04b4e8f14f65bbcc5377d62cad3e86c2aea36/src/libslic3r/PrintConfig.cpp#L397
Posted : 14/10/2024 10:05 am
BaconFase liked
RE: How to increase max print height over 1200mm
To help readers in the future, here is the Link to this sourcecode in the `master` branch: https://github.com/prusa3d/PrusaSlicer/blob/master/src/libslic3r/PrintConfig.cpp#L397
[...] def = this->add("max_print_height", coFloat); def->label = L("Max print height"); def->tooltip = L("Set this to the maximum height that can be reached by your extruder while printing."); def->sidetext = L("mm"); def->min = 0; def->max = 1200; #<<<<<------ THIS def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(200.0)); [...]
Posted : 14/10/2024 12:01 pm
RE: How to increase max print height over 1200mm
Might want to have a read of https://github.com/prusa3d/PrusaSlicer/issues/6072
Looks there theres 3 files to change and changing may have unintended consequences.
Posted : 14/10/2024 2:35 pm
BaconFase liked