Skip to content

Instantly share code, notes, and snippets.

View flabbet's full-sized avatar

Krzysztof Krysiński flabbet

View GitHub Profile
@flabbet
flabbet / liquid_glass.sksl
Created June 15, 2025 12:28
Liquid Glass PixiEditor SKSL Shader
// Inspiration taken from https://github.com/bergice/liquidglass
uniform shader iImage;
uniform float2 iResolution;
uniform float2 rectPos;
uniform float2 rectSize;
uniform float radius;
uniform float contour;
uniform float edgeStrength;
uniform float blurInfluence;
@flabbet
flabbet / colorPaletteGenerator.py
Created June 29, 2020 13:11
Generator of HSL color palette/panel image
from PIL import Image
import colorsys
width = 360
height = 100
image = Image.new("RGB", (width, height))
for y in range(height):
for x in range(width):