Click or drag to resize
DigitalRuneSingleLerpEffectorCloneCore Method
Makes the instance a clone of the specified ParticleEffector.

Namespace: DigitalRune.Particles.Effectors
Assembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
protected override void CloneCore(
	ParticleEffector source
)

Parameters

source
Type: DigitalRune.ParticlesParticleEffector
The object to clone.
Remarks
Notes to Inheritors: Every ParticleEffector derived class must implement this method. A typical implementation is to call base.CloneCore(this) to copy all properties of the base class and then copy all properties of the derived class.
See Also