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
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
- See Also
DeltaColor
How much the particle gets darker per second
public float DeltaColor { get; set; }
Property Value
DeltaSize
How much the particle will grow per second
public float DeltaSize { get; set; }
Property Value
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
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
Size
The size of the particle
public float Size { get; set; }