mirror of https://github.com/adamdruppe/arsd.git
Setting up the .clear() method better
I've made the .clear() method more practical by giving the user the ability to decide which color the screen will be cleared with and setting the default as black since this is what you will probably be using.
This commit is contained in:
parent
6e20f19cf6
commit
478df4abf5
|
@ -6436,10 +6436,10 @@ struct ScreenPainter {
|
|||
}
|
||||
|
||||
///
|
||||
void clear() {
|
||||
void clear(Color color = Color.black()) {
|
||||
if(impl is null) return;
|
||||
fillColor = Color(255, 255, 255);
|
||||
outlineColor = Color(255, 255, 255);
|
||||
fillColor = color;
|
||||
outlineColor = color;
|
||||
drawRectangle(Point(0, 0), window.width, window.height);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue