Axiom.ParticleSystems.Particle.SetDimensions C# (CSharp) Method

SetDimensions() public method

public SetDimensions ( float width, float height ) : void
width float
height float
return void
		public void SetDimensions( float width, float height )
		{
			hasOwnDimensions = true;
			this.width = width;
			this.height = height;
			parentSystem.NotifyParticleResized();
		}