Help improving metaballs shader

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
Connorses
Citizen
Posts: 63
Joined: Fri Sep 06, 2013 7:02 am

Help improving metaballs shader

Post by Connorses »

love_LHu0eVpZJ6.png
love_LHu0eVpZJ6.png (14.61 KiB) Viewed 1596 times
I can't seem to get it to render with flat colors!
I'm trying to allow for multiple colors of ball but I don't like how it wound up with this darker edge.
Here's the metaball.png I made (Wondering if it could be a problem with this? I tried to be sure it's only white pixels)
metaball.png
metaball.png (6.16 KiB) Viewed 1595 times
I'm using LOVE 0.10.2

It's a modified version of this script:
viewtopic.php?t=9061

Code: Select all

function love.load()
	mb_img = love.graphics.newImage("metaball.png")
	t=0
	--metaball gradient:
	canv_mbg = love.graphics.newCanvas(128,128)


	mb_x = {168,188,246,374,420,420,460,360,330,363}
	mb_y = {140,108,91,73,103,103,120,190,214,219}

	maxD = 20;
	delta_x = {}
	delta_y = {}

	colors = {}

	for i=1,#mb_x,1 do
		delta_x[i] = (love.math.random()*maxD)-(.5*maxD)
		delta_y[i] = (love.math.random()*maxD)-(.5*maxD)
		colors[i] = {
			80,
			240,
			30
		}
	end

	canv = love.graphics.newCanvas()

	effect_metaballs = love.graphics.newShader [[
        vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 pixel_coords)
		{
		vec4 pixel = Texel(texture, texture_coords);
		pixel.a = floor(pixel.a+0.5);
		return  pixel;
		}
	]]
end

function love.draw()
	love.graphics.clear(0,0,0)
	love.graphics.setCanvas(canv)
	love.graphics.setShader()
	love.graphics.clear(0,0,0,0)
	for n=1,#mb_x,1 do
		love.graphics.setColor(colors[n][1],colors[n][2],colors[n][3])
		love.graphics.draw(mb_img,mb_x[n],mb_y[n],0,1,1,0,0,0,0)
	end
	love.graphics.setColor(255,255,255)
	love.graphics.setCanvas()

	love.graphics.setShader(effect_metaballs)

	love.graphics.setColor(255,255,255,255)
	love.graphics.draw(canv)

	love.graphics.print(love.timer.getFPS(),32,32,0,1,1,0,0,0,0)
end

function love.mousepressed( x, y, button, istouch, presses)
	i = #mb_x+1
	mb_x[i] = x;
	mb_y[i] = y;
	delta_x[i] = (love.math.random()*maxD)-(.5*maxD)
	delta_y[i] = (love.math.random()*maxD)-(.5*maxD)
	colors[i] = {
			80,
			30,
			240,
		}
end

function love.update(dt)
	t=t+dt
	for i = 1,#mb_x,1 do
		mb_x[i] = mb_x[i]+delta_x[i] * dt
		mb_y[i] = mb_y[i]+delta_y[i] * dt
	end
end
Last edited by Connorses on Thu Jan 12, 2023 9:40 am, edited 2 times in total.
User avatar
pgimeno
Party member
Posts: 3637
Joined: Sun Oct 18, 2015 2:58 pm

Re: Help improving metaballs shader

Post by pgimeno »

Draw the canvas to the screen with premultiplied alpha mode.

Code: Select all

love.graphics.setBlendMode('alpha', 'premultiplied')
love.graphics.draw(canv)
love.graphics.setBlendMode('alpha', 'alphamultiply') -- back to normal blend mode
Connorses
Citizen
Posts: 63
Joined: Fri Sep 06, 2013 7:02 am

Re: Help improving metaballs shader

Post by Connorses »

Thanks but using 'premultiplied' just breaks the shader.

I realized I should mention I'm using LOVE 0.10.2
Attachments
love_hqkh3M3XnE.png
love_hqkh3M3XnE.png (21.08 KiB) Viewed 1307 times
User avatar
Sasha264
Party member
Posts: 131
Joined: Mon Sep 08, 2014 7:57 am

Re: Help improving metaballs shader

Post by Sasha264 »

Hi!
Multiple colors + flat balls, correct?
aa.png
aa.png (33.74 KiB) Viewed 1269 times
I also added some kind of antialiasing, you can have hard edges back if you replace smoothstep back to floor:

Code: Select all

vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 pixel_coords)
{
    vec4 pixel = Texel(texture, texture_coords);
    pixel.rgb /= pixel.a;
    pixel.a = smoothstep(0.46, 0.54, pixel.a);
    return pixel;
}
Connorses
Citizen
Posts: 63
Joined: Fri Sep 06, 2013 7:02 am

Re: Help improving metaballs shader

Post by Connorses »

Sasha you're awesome!

I appreciate the help. I'm very new to the shader stuff. I'll share something when I've worked this into my game.
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 2 guests