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?✗ Incorrect
Start Lifetime sets the duration each particle stays alive before it fades or disappears.
If you want particles to move faster, which property should you increase?
✗ Incorrect
Start Speed controls how fast particles move after being emitted.
How can you make particles have different lifetimes randomly?
✗ Incorrect
Using Random Between Two Constants for Start Lifetime gives each particle a random lifetime within a range.
What happens if particle speed is set to zero?
✗ Incorrect
Zero speed means particles stay where they are emitted and do not move.
Which Unity module contains the settings for particle lifetime and speed?
✗ Incorrect
The Main Module controls core properties like lifetime and speed.
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.