Axiom.ParticleSystems.Particle.SetDimensions C# (CSharp) Метод

SetDimensions() публичный Метод

public SetDimensions ( float width, float height ) : void
width float
height float
Результат void
		public void SetDimensions( float width, float height )
		{
			hasOwnDimensions = true;
			this.width = width;
			this.height = height;
			parentSystem.NotifyParticleResized();
		}