Top Banner
4.9. PARTICLE EFFECTS Use of particle effects within games
13
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

4.9. PARTICLE EFFECTSUse of particle effects within games

Page 2: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

PARTICLE EFFECTSUse of particle effects within games

Page 3: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Video not available in on-line slides

Page 4: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems

Particle system can be used to simulate a range of phenomena which are otherwise very hard to reproduce with conventional rendering techniques.

Examples include fire, explosions, smoke, sparks, falling leaves, clouds, snow, dust, hair, fur, or abstract visual effects like glowing trails, magic spells, etc.

Page 5: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems

Particles are often controlled by an emitter. The emitter births and kills particles, as well as determining position, size, etc.

The emitter encapsulates one, or more, sets of particle behaviour parameters. Parameters can include spawning rate, initial velocity, particle lifetime, particle colour, etc.

Particle parameter values are normally randomised (using some defined distribution).

Page 6: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems

View the DirectX SDK Soft Particles example

Page 7: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems

Simulation stage

• New particles are created based on the defined spawning rate. Each of the particle parameters are suitably initialised based on the emitter’s parameters.

• Any particle that has exceeded its lifetime is removed from the simulation.

• For each particle managed by the emitter.• The particle’s parameters are updated

Rendering stage

• Particles are typically rendered using a textured billboarded quad.

Aside: Collision detection between particles and key 3d geometry (e.g. terrain, players, etc.) may be used to make particles realistically interact with obstacles in the environment.

Page 8: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems (Fur and Hair)

Particle systems can be either animated or static. If animated the lifespan of particles are rendered over a number of different frames. If static the entire life cycle of each particle is rendered simultaneously.

This results in strands that show the particle’s overall trajectory. These strands can be used to simulate hair, fur, grass, and similar materials.

Page 9: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Systems (Fur and Hair)

The strands are controlled using the same parameters as for animated particles.

Different combinations of parameters can provide a strand with varying degrees of stiffness, limpness, bristliness, etc.

The strands may also use texture mapping to vary the strands' colour, length, or other properties across the emitter surface.

Page 10: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Particle Physics

View the DirectX SDK Advanced Particles example

Page 11: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

DIRECTED READINGDirected reading concerning particle systems

Directed

reading

Page 12: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Directed reading: General LODDirected

reading

• Read The Ocean Spray in Your Face – for a very early construction of a particle system

• Read Building an Advanced Particle System – for more information on particle systems

• Read UberFlow: A GPU-Based Particle Engine – for details on a GPU based particle engine

Page 13: 4.9. P ARTICLE E FFECTS Use of particle effects within games.

Summary

To do:Read the directed

reading

Think if you would like

to build a particle

system for your project

Today we explored:

The wide use of particle systems within games