Can CSS be applied to a GLTF model in THREE.js, such as setting transparency? Is it possible to achieve this with CSS styling rather than using JavaScript? For instance:
<style>
.transparency {
opacity: 0.5;
}
</style>
and then
<a-asset-item class="transparency">
</a-asset-item>