You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if you add a "point" like an iron rod or a stone in the middle of described a tract, it will end the current path it's drawing and start over after drawing the point. It doesn't actually draw a path until it's finished, so essentially the first half won't get drawn them. It will just just from the beginning to the point and continue from there.
I think the easiest fix is to stop drawing the points in the "steps" queue. It needs to still be in there to get the right location, but I think just changing that step to an action to push it to a separate point queue would be best. Then draw all the points after drawing all the paths. That would also make points drawn over the tracts, which I am ambivalent about, but at least it's consistent and probably the most visually-pleasing.
The text was updated successfully, but these errors were encountered:
Currently if you add a "point" like an iron rod or a stone in the middle of described a tract, it will end the current path it's drawing and start over after drawing the point. It doesn't actually draw a path until it's finished, so essentially the first half won't get drawn them. It will just just from the beginning to the point and continue from there.
I think the easiest fix is to stop drawing the points in the "steps" queue. It needs to still be in there to get the right location, but I think just changing that step to an action to push it to a separate point queue would be best. Then draw all the points after drawing all the paths. That would also make points drawn over the tracts, which I am ambivalent about, but at least it's consistent and probably the most visually-pleasing.
The text was updated successfully, but these errors were encountered: