"ValueError: 'url(#color-1)' is not a recognized color." SVG in manimce

Viewed 45

I am trying to display an SVG in my scene. when running, I encounter this error ValueError: 'url(#color-1)' is not a recognized color. does anyone know what I could do to fix this? this is my code:

from manim import *

class myScene(Scene):
    def construct(self):
        self.play(FadeIn(SVGMobject("silver.svg")))
0 Answers
Related