I’m trying to animate an SVG path which I use as a clip-path into another path with MorphSVG but it seems to be that my first path won’t dissolve completely in the other?
Inside of the SVG called `#clippert` there are two paths, #morph-to and #clippert-path which I am trying to morph in a loop (where they yoyo as well)
I've tried it like this:
const tl = new TimelineMax()
tl
.to("#clippert-path", 1, {
morphSVG: {
shape:"#morphTo",
},
repeat:-1,
yoyo:true,
})
But that doesn't seem to do it for the full path?