Dyverso Domains
Add script to Simulation Flow > FramesPre or StepsPre.
...
Find a particle's neighbours in emitter "Square01" and the given search radius. The number of neighbours will be displayed for every particle:
Code Block | ||
---|---|---|
| ||
emitter = scene.get_PB_Emitter("Square01") emitterParticles = emitter.getParticles() searchRadius = 0.2 for particle in emitterParticles: neighbours = particle.getNeighbors(searchRadius) scene.message(str(len(neighbours))+" neighbour particles found for particle "+str(particle.getId())) |