diff --git a/public/assets/models/oil_bottle.glb b/public/assets/models/oil_bottle.glb new file mode 100644 index 0000000..622f1b4 Binary files /dev/null and b/public/assets/models/oil_bottle.glb differ diff --git a/public/assets/models/oven_tray.glb b/public/assets/models/oven_tray.glb new file mode 100644 index 0000000..7f48382 Binary files /dev/null and b/public/assets/models/oven_tray.glb differ diff --git a/scripts/gen-assets.sh b/scripts/gen-assets.sh index 4ef671e..2289a91 100755 --- a/scripts/gen-assets.sh +++ b/scripts/gen-assets.sh @@ -153,6 +153,14 @@ do_prep() { gen_3d oven_tray 163 "a plain rectangular metal oven baking tray with a rolled edge" } +# ---- The pantry backlog cast (brief ยง7.5): mushrooms + bell pepper ---- +do_pantry() { + gen_3d button_mushroom 167 "a single small white button mushroom, smooth rounded cap, short stubby stem" + gen_3d portobello 171 "a large flat portobello mushroom cap face down showing brown gills, thick pale stem" + gen_3d king_oyster 173 "a king oyster mushroom, one thick smooth cream stem with a small light brown cap" + gen_3d bell_pepper 179 "a whole glossy red bell pepper with a short green stem, deep vertical lobes" +} + do_prep2d() { gen_2d bruschetta_hero 230 "rustic bruschetta on toasted sourdough, roasted tomato pieces and basil on top, dramatic hero shot, claymation stop-motion, soft matte clay, warm rim light, plain dark background" 1024 768 cut gen_2d wonderslice_bag 233 "a cheerful retro plastic bread bag with bold cartoon lettering style packaging design, red and yellow, claymation prop look, plain light grey background, no readable text" 768 768 cut @@ -163,6 +171,7 @@ case "${1:-all}" in 2d) do_2d ;; bakery) do_bakery ;; prep) do_prep; do_prep2d ;; + pantry) do_pantry ;; *) do_3d; do_2d ;; esac echo "done."