Version: 5.4
External Forces Module
트리거 모듈

Collision Module

This module controls the way particles collide with solid objects in the scene. Planes, 3D and 2D worlds are all options for particle collisions.

Planes Module Properties

프로퍼티: 기능:
Planes popup Select Planes mode.
Planes An expandable list of Transforms that define collision planes (Planes mode only).
Visualization Selects whether the collision plane gizmos will be shown in the scene view as wireframe grids or solid planes (Planes mode only).
Scale Plane Size of planes used for visualization (Planes mode only).
Visualize Bounds Renders the collision bounds of each particle as a wireframe shape in the scene view
Dampen 파티클이 충돌한 후 줄어드는 속도의 비율입니다.
Bounce 파티클이 충돌한 후 충돌 표면에서 튕겨져 나오는 속도의 비율입니다.
Lifetime Loss 파티클이 충돌할 때 줄어드는 전체 수명의 비율입니다.
Min Kill Speed 충돌한 후 이 속도 이하로 이동하는 파티클은 시스템에서 제거됩니다.
Radius Scale Allows you to adjust the radius of the particle collision spheres, so it more closely fits the visual edges of the particle graphic.
Send Collision Messages 이 옵션이 활성화되어 있으면 OnParticleCollision 함수를 통해 스크립트에서 파티클 충돌을 감지할 수 있습니다.
Collision Mode Pick between 3D or 2D world collisions.
Collides With Particles will only collide with objects on the selected layers (World mode only).
Enable Dynamic Colliders Allows the particles to also collide with dynamic objects. Otherwise only static objects are used.
Max Collision Shapes How many collision shapes can be considered for particle collisions. Excess shapes are ignored. Terrains take priority.
Collision Quality This affects how “watertight” the collisions are - at lower quality levels, particles may sometimes pass through colliders (World mode only).

World Module Properties

프로퍼티: 기능:
World popup Select World mode.
Collision Mode 3D or 2D
Visualize Bounds
Dampen 파티클이 충돌한 후 줄어드는 속도의 비율입니다.
Bounce 파티클이 충돌한 후 충돌 표면에서 튕겨져 나오는 속도의 비율입니다.
Lifetime Loss 파티클이 충돌할 때 줄어드는 전체 수명의 비율입니다.
Min Kill Speed 충돌한 후 이 속도 이하로 이동하는 파티클은 시스템에서 제거됩니다.
Radius Scale 2D 또는 3D 설정입니다.
Collides with Particles will only collide with objects on the selected layers (World mode only).
Enable Dynamic Colliders
Max Collision Shapes
Collision Quality This affects how “watertight” the collisions are - at lower quality levels, particles may sometimes pass through colliders (World mode only).
Send Collision Messages 이 옵션이 활성화되어 있으면 OnParticleCollision 함수를 통해 스크립트에서 파티클 충돌을 감지할 수 있습니다.

세부 정보

When other objects surround a particle system, the effect is often more convincing when the particles interact with those objects. For example, water or debris should be obstructed by a solid wall rather than simply passing through it. With Collision enabled, particles can collide with objects in the scene.

A particle system can be set so its particles collide with any collider in the scene by selecting World mode from the popup. (Colliders can also be disabled according to the layer they are on by using the Collides With property.) The popup also has a Planes mode option which allows you to add a set of planes to the scene that don’t need to have colliders. This option is useful for simple floors, walls and similar objects and has a lower processor overhead than World mode. When Planes mode is enabled, a list of transforms (typically empty GameObjects) can be added via the Planes property. The planes extend infinitely in the objects’ local XZ planes with the positive Y axis indicating the planes’ normal vectors. To assist with development, the planes will be shown as gizmos in the scene, regardless of whether or not the objects have any visible mesh themselves. The gizmos can be shown as a wireframe grid or a solid plane, and can also be scaled. However, the scaling only applies to the visualization - the collision planes themselves extend infinitely through the scene.

When collisions are enabled, the size of a particle is sometimes a problem because its graphic can be clipped as it makes contact with a surface. This can result in a particle appearing to “sink” partway into a surface before stopping or bouncing. The Particle Radius property addresses this issue by defining an approximate circular radius for the particles. This size information is used to prevent clipping and avoid the sinking-in effect.

The Dampen and Bounce properties are useful when the particles represent solid objects. For example, gravel will tend to bounce off a hard surface when thrown but a snowball’s particles might lose speed during a collision. Lifetime Loss and Min Kill Speed can help to reduce the effects of residual particles following a collision. For example, a fireball might last for a few seconds while flying through the air but after colliding, the separate fire particles should dissipate quickly.

You can also detect particle collisions from a script if Send Collision Messages is enabled. The script can be attached to the object with the particle system or the one with the collider or both. By detecting collisions, you can use particles as active objects in gameplay, such as projectiles, magic spell and power-ups. See the script reference page for MonoBehaviour.OnParticleCollision for further details and examples.

External Forces Module
트리거 모듈