Navigation
API > API/Runtime > API/Runtime/Engine
How particles respond to collision events.
| Name | EParticleCollisionResponse::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Particles/Collision/ParticleModuleCollisionGPU.h |
| Include Path | #include "Particles/Collision/ParticleModuleCollisionGPU.h" |
Syntax
namespace EParticleCollisionResponse
{
enum Type
{
Bounce,
Stop,
Kill,
}
}
Values
| Name | Remarks |
|---|---|
| Bounce | The particle will bounce off of the surface. |
| Stop | The particle will stop on the surface. |
| Kill | The particle will be killed. |