From 47815e5e733d39b6892c38f01a7014d8cd381b7d Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 26 Dec 2024 10:29:33 -0700 Subject: [PATCH] Have TracedPath always update to the stroke configuration passed in --- manimlib/mobject/changing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/changing.py b/manimlib/mobject/changing.py index 01a73560..0c3c17f6 100644 --- a/manimlib/mobject/changing.py +++ b/manimlib/mobject/changing.py @@ -112,7 +112,7 @@ class TracedPath(VMobject): self.time: float = 0 self.traced_points: list[np.ndarray] = [] self.add_updater(lambda m, dt: m.update_path(dt)) - self.set_stroke(stroke_color, stroke_width) + self.always.set_stroke(stroke_color, stroke_width) def update_path(self, dt: float) -> Self: if dt == 0: