Table of Contents

Class CpuParticleParameters

Namespace
OmegaEngine.Graphics.Renderables
Assembly
OmegaEngine.dll

A set of information about a particle in a particle system

public class CpuParticleParameters
Inheritance
CpuParticleParameters
Inherited Members
Extension Methods

Properties

Color

The color of the particle

[LuaHide]
public Color Color { get; set; }

Property Value

Color

Remarks

Is not serialized/stored, Color4 is used for that.

Color4

Used for XML serialization.

[LuaHide]
[Browsable(false)]
public XColor Color4 { get; set; }

Property Value

XColor
See Also

DeltaColor

How much the particle gets darker per second

public float DeltaColor { get; set; }

Property Value

float

DeltaSize

How much the particle will grow per second

public float DeltaSize { get; set; }

Property Value

float

Friction

How much the velocity will be reduced in one second as a value between 0 and 1

public float Friction { get; set; }

Property Value

float

LifeTime

How many seconds this particle will exist. Set to 0 never create. Set to OmegaEngine.Graphics.Renderables.CpuParticleParameters.InfiniteFlag for infinite.

public float LifeTime { get; set; }

Property Value

float

Size

The size of the particle

public float Size { get; set; }

Property Value

float