I’m connecting markers with lines like this:
p = meshscatter!(ax,X[framenum,:],Y[framenum,:],Z[framenum,:],markersize=msize,color=mcolor,colormap=mcolormap,clip_planes=Plane3f[])
conn = [(p[1][][m.conn[i,1]],p[1][][m.conn[i,2]]) for i in 1:size(m.conn,1)]
pl = linesegments!(ax, conn,color=conncolor,linewidth=connwidth)
But this way the lines get drawn on top of the markers. Is there any easy way to have it the other way around?