animations: add other two sides for outline pattern

This commit is contained in:
Victoria Fischer 2024-11-16 11:37:57 +01:00
parent e329a56c90
commit 67f1c995ce

View File

@ -96,6 +96,8 @@ impl Shader for TestShader {
(0, 0) => RGB8::new(255, 255, 255), (0, 0) => RGB8::new(255, 255, 255),
(0, _) => RGB8::new(255, 0, 0), (0, _) => RGB8::new(255, 0, 0),
(_, 0) => RGB8::new(0, 255, 0), (_, 0) => RGB8::new(0, 255, 0),
(255, _) => RGB8::new(0, 0, 255),
(_, 255) => RGB8::new(0, 0, 255),
_ => RGB8::new(0, 0, 0) _ => RGB8::new(0, 0, 0)
} }
} }