From 67f1c995ce3fc77ae3693a2cce07fd7c7f9d5da8 Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Sat, 16 Nov 2024 11:37:57 +0100 Subject: [PATCH] animations: add other two sides for outline pattern --- src/animations.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/animations.rs b/src/animations.rs index 790366c..31f21f8 100644 --- a/src/animations.rs +++ b/src/animations.rs @@ -96,6 +96,8 @@ impl Shader for TestShader { (0, 0) => RGB8::new(255, 255, 255), (0, _) => RGB8::new(255, 0, 0), (_, 0) => RGB8::new(0, 255, 0), + (255, _) => RGB8::new(0, 0, 255), + (_, 255) => RGB8::new(0, 0, 255), _ => RGB8::new(0, 0, 0) } }