Click or drag to resize
DigitalRuneParticleEffectorClone Method
Creates a new ParticleEffector that is a clone of the current instance.

Namespace: DigitalRune.Particles
Assembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
public ParticleEffector Clone()

Return Value

Type: ParticleEffector
A new ParticleEffector that is a clone of the current instance.
Remarks
Notes to Inheritors: The method Clone calls CreateInstanceCore which is responsible for creating a new instance of the ParticleEffector derived class and CloneCore(ParticleEffector) to create a copy of the current instance. Classes that derive from ParticleEffector need to implement CreateInstanceCore and CloneCore(ParticleEffector).
See Also