Axiom.Core.Billboard.SetDimensions C# (CSharp) 메소드

SetDimensions() 공개 메소드

Sets the width and height for this billboard.
public SetDimensions ( float width, float height ) : void
width float Width of the billboard.
height float Height of the billboard.
리턴 void
		public virtual void SetDimensions( float width, float height )
		{
			hasOwnDimensions = true;
			this.width = width;
			this.height = height;
			ParentSet.NotifyBillboardResized();
		}