Studio Glass
Studio GlassA retro pixel-art style alien invader character rendered with modern glass shader effects. The character features a symmetrical, blocky silhouette with two large rectangular eye cutouts and protruding limbs. The shape is filled with a vibrant gradient that transitions from bright yellow-green (#ebf267) on the left side to magenta-pink (#d817f1) on the right side, creating a smooth color blend through the center. The glass material has a glossy, translucent quality with subtle refraction and chromatic aberration effects visible at the edges, giving it depth and dimensionality. A soft fresnel highlight creates a luminous rim around the character's perimeter. The background is a soft, diffused lavender-gray (#e6e6ff) with subtle lighting and vignetting that creates a studio-like environment. The overall atmosphere is clean, modern, and slightly ethereal, with the character appearing to glow softly against the neutral backdrop. A fine film grain texture is applied across the entire composition, adding subtle texture and visual interest. The lighting suggests a three-point studio setup with soft key and fill lights creating a polished, professional appearance.
Code
<script setup lang="ts">
import {
Shader,
FilmGrain,
Glass,
StudioBackground,
Swirl
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<StudioBackground :ambient-intensity="65" :back-intensity="25" :brightness="100" :center="{ x: 0.5, y: 0.88 }" color="#e6e6ff" :fill-angle="53" :fill-intensity="9" :fill-softness="94" :key-intensity="11" :key-softness="100" :light-target="42" />
<Glass :aberration="0.45" :cutout="true" :edge-softness="0.05" :fresnel="0.2" :fresnel-softness="0.31" :highlight="0.3" :inner-zoom="1.15" :refraction="0.35" shape-sdf-url="https://data.shaders.com/storage/v1/object/public/user-uploaded-images/user_33nh0FG48zZa0rIUZuK7vgwPfZe/OcAv2bFTPVug_sdf.bin" :thickness="1">
<Swirl color-a="#d817f1" color-b="#ebf267" color-space="oklab" :speed="0.8" />
</Glass>
<FilmGrain :strength="0.1" />
</Shader>
</template>