manim icon indicating copy to clipboard operation
manim copied to clipboard

Feature Request: Add a new property (time_scale) for the Scene class.

Open BreakingLead opened this issue 2 years ago • 1 comments

Description of proposed feature

New property named time_scale for Scene class.

How can the new feature be used?

If self.time_scale = 0.5, self.play(run_time=10) will run like self.play(run_time=5) in order to render faster in debugging stage.

Additional comments

Maybe I should initiate a pull request?

BreakingLead avatar Dec 20 '23 13:12 BreakingLead

Why don't just do the following?

time_scale = 0.5
self.play(run_time=10*time_scale)

ubaldot avatar Dec 21 '23 08:12 ubaldot