gpt4 book ai didi

java - 在 Java 方法中更改我的背景

转载 作者:行者123 更新时间:2023-11-30 07:30:53 25 4
gpt4 key购买 nike

我正在用 Java 编写 Breakout 游戏。我的背景一开始是灰色的,但是当我获胜时我希望它变成绿色。但是,我无法实现这一目标。有人可以帮助我吗?

这里声明了颜色;

// Those are the basic statements and properties of the game and prepares the game to start
int numberlost =0;
Graphics gContext;
Image buffer;
Thread thread;
boolean leftArrow = false;
boolean rightArrow = false;
boolean ballready = true;
boolean extraball=false;
Ball ball;
Field brick;
Paddle paddle;

public static final Color
PaddleColor=Color.black,
ObstacleColor=Color.red,
BallColor=Color.red;
public static Color FieldColor = new Color(0xcccccc); // background is hexidemal color grey

这是我的 win() 方法:

// This method is called when you win 
public void win() {
ball=null;
paddle=null;
// the background is set to green
FieldColor= Color.green;
}

最佳答案

public void win() {
ball=null;
paddle=null;
// the background is set to green
FieldColor= Color.green;
}

此方法只是将 Color.green 颜色分配给 FieldColor。相反,您应该将其设置为 JPanel 或您用作背景颜色的任何容器。

关于java - 在 Java 方法中更改我的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36151129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com