From 96e670b4aa4cc79b42bd848d9f75d1e2f1b5670a Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sun, 3 Feb 2019 12:12:49 -0800 Subject: [PATCH] Change to banner defaults --- manimlib/for_3b1b_videos/common_scenes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manimlib/for_3b1b_videos/common_scenes.py b/manimlib/for_3b1b_videos/common_scenes.py index 4eb1241e..6b686906 100644 --- a/manimlib/for_3b1b_videos/common_scenes.py +++ b/manimlib/for_3b1b_videos/common_scenes.py @@ -307,6 +307,7 @@ class Banner(Scene): "date": "Sunday, February 3rd", "message_scale_val": 0.9, "add_supporter_note": False, + "pre_date_text": "Next video on ", } def __init__(self, **kwargs): @@ -363,7 +364,8 @@ class Banner(Scene): def get_date_message(self): return TextMobject( - "Next video on ", self.date, + self.pre_date_text, + self.date, tex_to_color_map={self.date: YELLOW}, )