mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 07:07:46 +00:00
commit
7f9b0a7eac
1 changed files with 2 additions and 2 deletions
|
|
@ -63,7 +63,7 @@ class Scene(object):
|
|||
# Items associated with interaction
|
||||
self.mouse_point = Point()
|
||||
self.mouse_drag_point = Point()
|
||||
self.hold_on_wait = not self.presenter_mode
|
||||
self.hold_on_wait = self.presenter_mode
|
||||
|
||||
# Much nicer to work with deterministic scenes
|
||||
if self.random_seed is not None:
|
||||
|
|
@ -629,7 +629,7 @@ class Scene(object):
|
|||
self.camera.frame.to_default_state()
|
||||
elif char == "q":
|
||||
self.quit_interaction = True
|
||||
elif char == " ":
|
||||
elif char == " " or symbol == 65363: # Space or right arrow
|
||||
self.hold_on_wait = False
|
||||
elif char == "e":
|
||||
self.embed(close_scene_on_exit=False)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue