Ejemplo n.º 1
0
 /// <summary>
 ///		Sets the width and height for this billboard.
 /// </summary>
 /// <param name="width">Width of the billboard.</param>
 /// <param name="height">Height of the billboard.</param>
 public virtual void SetDimensions(float width, float height)
 {
     hasOwnDimensions = true;
     this.width       = width;
     this.height      = height;
     ParentSet.NotifyBillboardResized();
 }
 //-----------------------------------------------------------------------
 public override void NotifyParticleResized()
 {
     billboardSet.NotifyBillboardResized();
 }