I am using QGIS 3.16 and I want to create a dynamic buffer around a layer of points, so that every time I move some point the buffer also moves. I have succeed by duplicating the layer and then symbolizing by geometry generator with the expression "buffer($geometry,10000)" but the problem is that the buffers overlap and I would like them to be a group
Is there any other way to solve it? I've heard of an expression single_sided_buffer( $geometry, distance, segments, join) but I don't know if that's the purpose of it


Geometry Generatorfunction you need to collect thegeometryfirst. Likebuffer(collect($geometry),100). Blending Mode should be Layer:Normaland Feature:Lighten– Bernd Loigge Nov 05 '21 at 13:23