New demo artwork: Procedural String Lights

This commit is contained in:
Keavon Chambers
2024-01-05 06:24:13 -08:00
parent b3e4caec1a
commit c7fd9cfc21
7 changed files with 9 additions and 3 deletions

View File

@@ -478,6 +478,7 @@ mod test {
let test_files = [
("Just a Potted Cactus", include_str!("../../demo-artwork/just-a-potted-cactus.graphite")),
("Valley of Spires", include_str!("../../demo-artwork/procedural-string-lights.graphite")),
("Valley of Spires", include_str!("../../demo-artwork/valley-of-spires.graphite")),
];

View File

@@ -5,9 +5,10 @@ use crate::messages::prelude::*;
pub struct DemoArtworkDialog;
/// `(name, thumbnail, filename)`
const ARTWORK: [(&str, &str, &str); 2] = [
const ARTWORK: [(&str, &str, &str); 3] = [
("Valley of Spires", "ThumbnailValleyOfSpires", "valley-of-spires.graphite"),
("Just a Potted Cactus", "ThumbnailJustAPottedCactus", "just-a-potted-cactus.graphite"),
("Procedural String Lights", "ThumbnailProceduralStringLights", "procedural-string-lights.graphite"),
];
impl DialogLayoutHolder for DemoArtworkDialog {