From f626a1a1e205e84f2ad3f3faa9ba828b74ed5fce Mon Sep 17 00:00:00 2001 From: TonyCrane <975062472@qq.com> Date: Wed, 6 Oct 2021 17:28:18 +0800 Subject: [PATCH] add tips for interactive mode --- manimlib/scene/scene.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manimlib/scene/scene.py b/manimlib/scene/scene.py index f25c5eb2..af5dac9c 100644 --- a/manimlib/scene/scene.py +++ b/manimlib/scene/scene.py @@ -100,6 +100,8 @@ class Scene(object): # If there is a window, enter a loop # which updates the frame while under # the hood calling the pyglet event loop + print("Tips: You are now in the interactive mode. Now you can use the keyboard\ +and the mouse to interact with the scene. Just press `q` if you want to quit.") self.quit_interaction = False self.lock_static_mobject_data() while not (self.window.is_closing or self.quit_interaction):