PLN

PLN

Poussière de la Course d'Or

// Poussière de la Course d'Or
// Par PLN

osc(10, 0.025)
	.modulate(voronoi(100, 0.02))
	.kaleid(4)
	.color(() => 1.2 + 0.15 * Math.cos(time / 1337), 0.9, 0.5)
	.luma(() => (0.6 + 0.23 * Math.sin(time)))
	.scale(() => 0.2 + 0.05 * Math.sin(time / 200))
	.modulatePixelate(noise(0.1, 0.01))
	.modulate(src(o0)
		.colorama(() => 0.05 * Math.sin(time / 200)), 0.1
	)
	.out()
Go Back