diff --git a/example_scenes.py b/example_scenes.py index 8ffa857d..421a2e73 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -630,7 +630,9 @@ class SurfaceExample(ThreeDScene): self.play(FadeTransform(surface_text, light_text)) light = self.camera.light_source - self.add(light) + light_dot = GlowDot(color=WHITE, radius=0.5) + light_dot.always.move_to(light) + self.add(light, light_dot) light.save_state() self.play(light.animate.move_to(3 * IN), run_time=5) self.play(light.animate.shift(10 * OUT), run_time=5)