How can I add (red, green, blue) values to my Java? For example:
setColor(255, 0, 0);
The context looks like this:
public void render() {
BufferStrategy bs = getBufferStrategy();
if (bs == null) {
createBufferStrategy(3);
return;
}
Graphics g = bs.getDrawGraphics();
g.setColor(); // <-- This line
g.fillRect(0, 0, getWidth(), getHeight());
g.dispose();
bs.show();
}
I want to give my rectangle a color using RGB values like (200, 200, 200) for example; that'll be like a gray.
You can get a Color instance with the simple code:
Color myWhite = new Color(255, 255, 255); // Color white
Then, you can set RGB color to your object with something like that:
g.setColor(myWhite);
Hope it helps you!
Or you can do:
setColor(new Color(r, g, b));
For example:
setColor(new Color(0, 0, 0)); //sets the color to Black
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With