Beginning highD project

This commit is contained in:
Grant Sanderson
2017-08-05 20:47:06 -07:00
parent cc61b9b807
commit ff3a214328
8 changed files with 302 additions and 66 deletions

View File

@ -150,7 +150,13 @@ class ExternallyAnimatedScene(Scene):
def construct(self):
raise Exception("Don't actually run this class.")
class TODOStub(Scene):
CONFIG = {
"message" : ""
}
def construct(self):
self.add(TextMobject("TODO: %s"%self.message))
self.dither()