Change to banner defaults

This commit is contained in:
Grant Sanderson
2019-02-03 12:12:49 -08:00
parent 33b7371eb1
commit 96e670b4aa

View File

@ -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},
)