![]() |
|
Three blobs - Printable Version +- XOR Userforum (https://forum.xor.eu) +-- Forum: Products (https://forum.xor.eu/forumdisplay.php?fid=3) +--- Forum: NerdSEQ (https://forum.xor.eu/forumdisplay.php?fid=6) +---- Forum: Project / Mapping Exchange (https://forum.xor.eu/forumdisplay.php?fid=30) +----- Forum: Shaders (https://forum.xor.eu/forumdisplay.php?fid=35) +----- Thread: Three blobs (/showthread.php?tid=2095) |
Three blobs - Morim - 05-29-2026 Hi Here is a small shader with three blobs that can be moved in space. The color is cycling and speed can be changed. There is also control over how "blobby" it shall be when coming close to each other. // Blobs uniform float u_modulator1; //Blob1.x uniform float u_modulator2; //Blob1.y uniform float u_modulator3; //Blob2.x uniform float u_modulator4; //Blob2.y uniform float u_modulator5; //Blob3.x uniform float u_modulator6; //Blob3.y // Smoothing uniform float u_modulator7; //Smooth_low ~0.01 uniform float u_modulator8; //Smooth_high ~0.3 // uniform float u_modulator9; //Red speed uniform float u_modulator10; //Green speed uniform float u_modulator11; //Blue speed This is my first shader for VEX ![]() |