Change the way alpha is interpreted on prim text. Manris #4723
parent
c7c9edd049
commit
7d9b316ce6
|
@ -3479,7 +3479,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
/// <param name="alpha"></param>
|
||||
public void SetText(string text, Vector3 color, double alpha)
|
||||
{
|
||||
Color = Color.FromArgb(0xff - (int) (alpha*0xff),
|
||||
Color = Color.FromArgb((int) (alpha*0xff),
|
||||
(int) (color.X*0xff),
|
||||
(int) (color.Y*0xff),
|
||||
(int) (color.Z*0xff));
|
||||
|
|
Loading…
Reference in New Issue