Sorry, my English is not very good, and I’m still a beginner.
I’m thinking of using trigger event and GPU event in VFX Graph, but I can’t figure out the direction of particles generated by GPU event.
Here’s a halfway example:
https://vimeo.com/946506241
I still can’t figure out how to do it. I want to create small water droplets emitted when several water balls move. They should primarily move backward behind their respective water balls and have some spread.
I’m using Unity 2023.2.3f and VFX Graph 16.0.4.
Cheers.

- At the Update Block, you should add a “Trigger Event Rate”.
- Drag the output of that node to the new system (you’ll create the water droplets here). This system is similar to how you create the Main System.
- Add Turbulence Noise at the Update Node on the new system.
- Tweak the parameters.
I think it is similar to the firework effect, which you can find many tutorials for on YouTube.
good luck
1 Like

I was initially trying to figure out how to specifically create this effect, but in the end, I switched to using the particle system and achieved it with Cone shape in a SubEmitter.
Thank you for your response anyway!!