function volcanoScene({
displacementScale = 0.5,
width,
height,
...options
} = {}) {
const id = "a" + Math.random().toString(16).slice(2);
return html`
<a-scene embedded stats=false style="height: 500px" id=${id}>
<a-assets>
<img id=${id}-texture>
<img id=${id}-displacement>
<img id=${id}-normal>
</a-assets>
<a-plane
class="plane"
position="0 1.8 -3"
rotation="-30 0 0" width="${(width / height) * 4}" height="${4}"
src="#${id}-texture"
normal-map="#${id}-texture"
displacement-map="#${id}-displacement"
displacement-scale=${displacementScale}
segments-width=${Math.min(width, 200)}
segments-height=${Math.min(height, 200)}
></a-plane>
</a-scene>`;
}