Axiom.ParticleSystems.BillboardParticleRenderer.CopyParametersTo C# (CSharp) 메소드

CopyParametersTo() 공개 메소드

public CopyParametersTo ( ParticleSystemRenderer other ) : void
other ParticleSystemRenderer
리턴 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