BackgroundColor
Introduction
Code Example
if (FlatRedBall.Input.InputManager.Keyboard.KeyPushed(Keys.Up))
{
Camera.Main.BackgroundColor =
Microsoft.Xna.Framework.Color.Red;
}
if (FlatRedBall.Input.InputManager.Keyboard.KeyPushed(Keys.Down))
{
Camera.Main.BackgroundColor =
Microsoft.Xna.Framework.Color.Blue;
}
Transparent Background Color
Drawing before FlatRedBall is Drawn
Last updated
Was this helpful?