plattysoft / Leonids

A Particle System for standard Android UI: http://plattysoft.github.io/Leonids/
Apache License 2.0
2.28k stars 398 forks source link

Particle Wall #109

Open DaCodaHUB opened 4 years ago

DaCodaHUB commented 4 years ago

Is there a way to create a wall so the particles would be stopped or bounced off?

plattysoft commented 4 years ago

That was never implemented. AFAIK This is not implemented in any particle system. Particles are meant to be very simple, if we add any collision detect / physics, the amount of computation per cycle becomes too much to keep and draw a large number of them smoothly. You might want to check some proper Game Engine and use actual bodies, maybe AndEngine with the Box2D support, or maybe something else that is newer.