Axiom.ParticleSystems.BillboardParticleRenderer.CopyParametersTo C# (CSharp) Method

CopyParametersTo() public method

public CopyParametersTo ( ParticleSystemRenderer other ) : void
other ParticleSystemRenderer
return void
		public override void CopyParametersTo( ParticleSystemRenderer other )
		{
			BillboardParticleRenderer otherBpr = (BillboardParticleRenderer)other;
			Debug.Assert( otherBpr != null );
			otherBpr.BillboardType = this.BillboardType;
			otherBpr.CommonUpVector = this.CommonUpVector;
			otherBpr.CommonDirection = this.CommonDirection;
		}
		#endregion