0
0
Unityframework~5 mins

Particle lifetime and speed in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does particle lifetime mean in Unity's particle system?
Particle lifetime is the amount of time a particle exists before it disappears. It controls how long each particle stays visible.
Click to reveal answer
beginner
How does particle speed affect the movement of particles?
Particle speed determines how fast particles move when they are emitted. Higher speed means particles travel faster in the scene.
Click to reveal answer
beginner
Which Unity component controls particle lifetime and speed?
The ParticleSystem component controls both lifetime and speed through its Main Module settings.
Click to reveal answer
intermediate
How can you set a random lifetime for particles in Unity?
You can set a random lifetime by using the Start Lifetime property with a range, like Random Between Two Constants, so each particle has a different lifetime.
Click to reveal answer
beginner
What happens if you set particle speed to zero?
If particle speed is zero, particles will not move from their emission point but will still exist for their lifetime.
Click to reveal answer
What does the Start Lifetime property control in a Unity particle system?
AThe color of particles
BHow fast particles move
CHow long each particle exists before disappearing
DThe size of particles
If you want particles to move faster, which property should you increase?
AStart Lifetime
BStart Speed
CEmission Rate
DGravity Modifier
How can you make particles have different lifetimes randomly?
AUse Random Between Two Constants for Start Lifetime
BSet Start Lifetime to a fixed number
CChange Start Speed randomly
DAdjust Emission Rate
What happens if particle speed is set to zero?
AParticles change color
BParticles move very fast
CParticles disappear immediately
DParticles do not move from emission point
Which Unity module contains the settings for particle lifetime and speed?
AMain Module
BShape Module
CEmission Module
DRenderer Module
Explain how particle lifetime and speed affect the behavior of particles in Unity.
Think about how long particles stay and how fast they travel.
You got /4 concepts.
    Describe how to set a random lifetime for particles and why you might want to do that.
    Randomness helps make particles less uniform.
    You got /3 concepts.