- Home /
LOD for particles?
Hello
I have two questions regarding Unity & particles:
1) Is there a way to use a kind of LOD (Level Of Detail) for particles?. I don't understand how a particle effect displays as much fps if it is very close to the camera or if it is very far away and we see basically just two pixels animated of it...?
Is there a way to optimize the particle systems (LOD for texture size?) as it is farer and farer?
2) On mobile, would it be faster to create a 2D version of an effect (for example a complex fireball that explodes on a wall), like a 2D animation made of successive frames instead of computing the whole effect (particles and smoke and such) ?
thanks a lot
Jeff
Answer by FortisVenaliter · Aug 21, 2015 at 04:09 PM
So, there are a few things you can do, but the particle system in Unity is already incredibly fast.
You can use an LODGroup script to enable particles when near, or just a single quad effect when far.
Particles will already drop the Mip Map LOD as they are further away, so make sure your texture generates Mip Maps in the import settings.
Your answer
Follow this Question
Related Questions
Particles looking Boxy in distance 0 Answers
Shoot particles like motorcycle roost... 0 Answers
dust in a light effect 0 Answers
Eliminate particle flicker 1 Answer
How do I Update the transform of Instantiate prefab? 2 Answers