Make default_wait_time a piece of scene configuration

This commit is contained in:
Grant Sanderson
2024-12-10 19:21:16 -06:00
parent 2c43d293a5
commit c9b6ee57a8
3 changed files with 8 additions and 9 deletions

View File

@ -34,10 +34,6 @@ DEFAULT_MOBJECT_TO_EDGE_BUFFER: float = GLOBAL_CONFIG["sizes"]["default_mobject_
DEFAULT_MOBJECT_TO_MOBJECT_BUFFER: float = GLOBAL_CONFIG["sizes"]["default_mobject_to_mobject_buff"]
# In seconds
DEFAULT_WAIT_TIME: float = GLOBAL_CONFIG["default_wait_time"]
# Standard vectors
ORIGIN: Vect3 = np.array([0., 0., 0.])
UP: Vect3 = np.array([0., 1., 0.])