Axiom.Core.Billboard.SetDimensions C# (CSharp) Method

SetDimensions() public method

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.
return void
		public virtual void SetDimensions( float width, float height )
		{
			hasOwnDimensions = true;
			this.width = width;
			this.height = height;
			ParentSet.NotifyBillboardResized();
		}