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();
		}