| ParticleSystemCloneCore Method |
Makes the instance a clone (deep copy) of the specified
ParticleSystem.
Namespace: DigitalRune.ParticlesAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax protected virtual void CloneCore(
ParticleSystem source
)
Protected Overridable Sub CloneCore (
source As ParticleSystem
)
protected:
virtual void CloneCore(
ParticleSystem^ source
)
abstract CloneCore :
source : ParticleSystem -> unit
override CloneCore :
source : ParticleSystem -> unit
Parameters
- source
- Type: DigitalRune.ParticlesParticleSystem
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