diff --git a/examples/scripts/thumbnails.mjs b/examples/scripts/thumbnails.mjs index 883429b219a..8e78eef82ab 100644 --- a/examples/scripts/thumbnails.mjs +++ b/examples/scripts/thumbnails.mjs @@ -16,6 +16,7 @@ categories = categories.filter(c => c !== 'index.mjs'); categories.forEach(function (category) { let examples = fs.readdirSync(`${MAIN_DIR}/src/examples/${category}`); examples = examples.filter(e => e !== 'index.mjs'); + examples = examples.filter(e => e !== 'lit-material.tsx'); examples.forEach((e) => { exampleList.push({ category, @@ -64,3 +65,5 @@ async function takeScreenshots() { } takeScreenshots(); + +console.log("🚀 ~ file: thumbnails.mjs:20 ~ temporary filter: 'lit-material.tsx'"); diff --git a/examples/src/examples/graphics/index.mjs b/examples/src/examples/graphics/index.mjs index cd30dd8aa55..7abcf813aff 100644 --- a/examples/src/examples/graphics/index.mjs +++ b/examples/src/examples/graphics/index.mjs @@ -8,7 +8,7 @@ import ClusteredLightingExample from "./clustered-lighting"; import ClusteredOmniShadowsExample from "./clustered-omni-shadows"; import ClusteredSpotShadowsExample from "./clustered-spot-shadows"; import ContactHardeningShadowsExample from "./contact-hardening-shadows"; -import LitMaterialExample from "./lit-material"; +// import LitMaterialExample from "./lit-material"; import GrabPassExample from "./grab-pass"; import GroundFogExample from "./ground-fog"; import HardwareInstancingExample from "./hardware-instancing";