Thanks! That's very helpful. I missed it because I'm using hardware retraction, so I'm substituting all my retractions with G10 and G11, using a post-processing script given to me:
Code: Select all
{REPLACE "G1 E-1.0000 F60" "G10; retract"}
{REPLACE "G1 E1.0000 F60" "G11; unretract"}
{REPLACE "G1 E1.0000 F18" ""}
If you look at your code, you'll notice that the unretraction you pointed out (
G1 E3.5500 F360) is 30% of your normal retraction speed (
G1 E-3.5000 F1200). So my script was deleting the
G1 E1.0000 F18 instead of replacing it with G11. If I change my script to
{REPLACE "G1 E1.0000 F18" "G11; unretract F18"}, I'll get my unretract back (though it will be full-speed).
Thanks!!!