1
Graphics / Change opacity for fade out effect
« on: March 18, 2009, 10:20:53 am »
Awesome, got it. Thanks!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Image img = new Image(640, 480, new Color(0,0,0, 0));
Sprite spr = new Sprite(img);
spr.Color = new Color(0, 0, 0, 100);
Window.Instance.Draw(spr);
Window.Instance.Display();