-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
enhancementAdditions and improvements in generalAdditions and improvements in generalnew featureEnhancement specifically adding a new feature (feature request should be used for issues instead)Enhancement specifically adding a new feature (feature request should be used for issues instead)
Description
Describe the bug
Right now I can only change the background colour in my source file by writing
config["background_color"] = WHITE for example.
The problem is that this works only for one scene. If I write
config["background_color"] = WHITE
...Scene1...
config["background_color"] = BLUE
...Scene2...
then Scene1 will render with blue background.
Expected behavior
Something as prominent and important as the background colour of a scene should be easier to change, and more importantly should be changable from within a scene.
I am asking for
self.play(Animation1)
self.background_color=Blue
self.play(Animation2)
self.background_color=Green
self.play(Animation3)
Metadata
Metadata
Assignees
Labels
enhancementAdditions and improvements in generalAdditions and improvements in generalnew featureEnhancement specifically adding a new feature (feature request should be used for issues instead)Enhancement specifically adding a new feature (feature request should be used for issues instead)