User:Anon

Don't mind the mess!

We're currently in the process of migrating the Panda3D Manual to a new service. This is a temporary layout in the meantime.

Top
Python C++

Creating the Particle System

The particle panel can be invoked by running the particle panel sample program.

Particlepanel-main.png

1. Load Params, Save Params, Print Params or Quit. You can load or save your Panda Particle Files (*.ptf), which are ordinary text files. You can also print the content of the ptf file to the console. Quit exits the particle panel program.

2. Toggle between Active or Passive modes (Active by default).

3. Find out general info about the Particle Panel program or toggle Baloon Help (on by default).

4. Select effect to configure or create new effect. Options: Create new Effect, Select Particle Effect, Place Particle Effect, Toggle Effect Vis, Enable/Disable.

5. Select effect to configure or create new effect.

6. Select particles object to configure or add new particles object to current effect.

7. System:

Particlepanel-system.png

1) Max number of simultaneous particles. More amount of particles can't exist at the same time.

2) Seconds between particle births. No new particles will be generated during this period.

3) Number of particles created at each birth.

4) Variation in litter size, so exactly the same amount of particles won't be generated at each birth as set in the "Litter Size".

5) Age in seconds at which the system (vs. Particles) should die. Default is 0, which means the particle generator won't die.

6) Whether or not velocities are absolute.

7) System has a lifespan or not. Lenght set in the "Lifespan".

8) Particle system position (0,0,0 by default)

9) Particle system orientation (0,0,0 by default)

Some of this information can also be found in the Particle Effect Basic Parameters page.

8. Factory:

Particlepanel-factory.png

1) Type of the particle factory . The differences between these factories lie in the orientation and rotational abilities.

2) Average particle lifespan in seconds. Sets how long each particle should exist.

3) Variation in lifespan. Default is 0, which means all particles will have the same lifespan.

4) Average particle mass.

5) Variation in particle mass.

6) Average particle terminal velocity.

7) Variation in terminal velocity.

Some of this information can also be found in the Particle Factories page.

9. Emitter:

Particlepanel-emitter.png

1) There are a large number of particle emitters, each categorized by the volume of space they represent.

2) All emitters have three modes: explicit, radiate, and custom. Explicit mode emits the particles in parallel in the same direction. Radiate mode emits particles away from a specific point. Custom mode emits particles with a velocity determined by the particular emitter.

3) Launch velocity multiplier (all emission modes)

4) Spread for launch velocity multiplier (all emission modes)

5) Velocity vector applied to all particles.

6) All particles launch with this velocity in Explicit mode.

7) Particles launch away from this point in Radiate mode.

Some of this information can also be found in the Particle Emitters page.

10. Renderer:

Particlepanel-renderer.png

1) Renderer Type sets the type of particle renderer. These are LineParticleRenderer, GeomParticleRenderer, PointParticleRenderer, SparkleParticleRenderer and SpriteParticleRenderer.

2) Alpha setting over particle's lifetime: NO_ALPHA, ALPHA_IN, ALPHA_OUT, ALPHA_IN_OUT, ALPHA_USER.

3) Alpha value for ALPHA_USER alpha mode.

1. LineParticleRenderer

LineParticleRenderer is useful for effects such as rain. You can't use the SpriteParticleRenderer for the same effect, as they lines would always face the camera. Each Particle Renderer has it's own unique options, so we are going to explain them separately.

Linerenderer.png


1.1 – 1.2) Head color and tail color of the line can be different.
1.3) You can set the lenght of the line here.

2. GeomParticleRender

GeomParticleRender renders particles as full 3D objects. This requires a geometry node.

Geomrenderer1.png

undocumented

Geomrenderer2.png


2.1) If you enable these, then the values from 3 and 5 and 7 won't be ignored, the values between Initial X/Y/Z and Final X/Y/Z will be interpolated over particle's life.
2.2, 2.4, 2.6) Initial X/Y/Z scales. You can set the scales of particles here.
2.3, 2.5, 2.7) Final X/Y/Z scales. If the "X Scale","Y Scale" and "Z Scale" are enabled, then the the values between Initial X/Y/Z and Final X/Y/Z will be interpolated over particle's life.

Geomrenderer3.png

undocumented

3. PointParticleRender

Renders particles as pixel points.

Pointrenderer.png


3.1) Size of the points (1 pixel by default)
3.2 – 3.3) Starting and ending colors. The colors the points will have during their birth and death.
3.4) How the particles blend from the start color to the end color .
3.5) Interpolation method between colors .

4. SparkleParticleRender

Renders particles star or sparkle objects, three equal-length perpendicular axial lines, much like jacks. Sparkle particles appear to sparkle when viewed as being smaller than a pixel.

Sparklerenderer.png


4.1 – 4.2) Color of the center and color of the edges.
4.3 – 4.4) Initial sparkle radius and final sparkle radius
4.5) Whether or not sparkle is always of radius birthRadius

5. SpriteParticleRender

Renders particles as an image, using a Panda3D texture object. The image is always facing the user.

Spriteparticlerenderer-1.png


5.1.1) On: Multitexture node will be animated, Off: only the first frame of a node will be rendered. One way to make such a node (textured quad) is egg-texture-cards program, which will take your image files and generate an egg file for you. To add such a node, click on (5.4) Add Animation button.
5.1.2) The frame rate of the animation, enable Animation first.
5.1.3) Add a texture. You can add have more than one so that all particles won't have exactly the same texture assigned.
5.1.4) Add a node intended for animations.
5.1.5 - 5.1.6) Write the name of the texture file. You won't see changes before you click "Update". You can see the default texture file used by the program. Use the X button to remove the texture.


Spriteparticlerenderer-2.png


5.2.1) If you enable these, then the values from 4 and 6 won't be ignored, the values between Initial X/Y and Final X/Y will be interpolated over particle's life.
5.2.2) On: particles that are set to spin on the Z axis will spin appropriately.
5.2.3, 5.2.5) Initial X/Y scales. You can set the scales of particles here.
5.2.4, 5.2.6) Final X/Y scales. If the "X Scale" and "Y Scale" are enabled, then the the values between Initial X/Y and Final X/Y will be interpolated over particle's life.
5.2.7) If animAngle is false: counter-clockwise Z rotation of all sprites

Spriteparticlerenderer-3.png

undocumented

Spriteparticlerenderer-4.png

undocumented

11. Force

Particlepanel-force.png

undocumented

Incomplete Section

Note: this section is incomplete. It will be updated soon.

Top