Add stroke opacity to VMobject.get_style

This commit is contained in:
Grant Sanderson 2019-03-20 21:28:19 -07:00
parent 319b256b0c
commit 453ae95cee

View file

@ -210,8 +210,10 @@ class VMobject(Mobject):
"fill_opacity": self.get_fill_opacities(),
"stroke_color": self.get_stroke_colors(),
"stroke_width": self.get_stroke_width(),
"stroke_opacity": self.get_stroke_opacity(),
"background_stroke_color": self.get_stroke_colors(background=True),
"background_stroke_width": self.get_stroke_width(background=True),
"background_stroke_opacity": self.get_stroke_opacity(background=True),
"sheen_factor": self.get_sheen_factor(),
"sheen_direction": self.get_sheen_direction(),
"background_image_file": self.get_background_image_file(),