java - 当鼠标悬停在它上面时,获取一个改变颜色的按钮

时间:2017-03-29 18:58:39

标签: java

所以我想为一个简单的java游戏制作一个菜单,当鼠标悬停在它们上面时按钮会改变颜色。我没有使用JButton,而是使用mouselistener来检测点击的按钮图片。当我将鼠标悬停在按钮所在的特定区域时,如何进行鼠标调用?

public void mouseEntered(MouseEvent e) {
    if(e.getX() < 950 && e.getX() > 350 && e.getY() < 300 && e.getY() > 200){
        menuImage2 = true;
        menuImage1 = false;
    }
}

这是我到目前为止所拥有的

1 个答案:

答案 0 :(得分:0)

这就是我做的。它也播放声音。你只需使用旗帜。注意,我使用了mouseMoved而不是mouseEntered。

Class MouseInput

@Override
public void mouseMoved(MouseEvent e) {
        int x=e.getX();
        int y=e.getY();

        if (x>100&&x<200&&y>150&&y<200) {
            if (mouseInStart==false) {     <---- if this line is true, means mouse entered for first time.
                Sound.playSound(soundEnum.BUTTONHOVER);
            }
            mouseInStart=true;
        } else {
            mouseInStart=false;
        }
}

public boolean mouseInStart() {    <--use this in your update method
    return mouseInStart;
}

在我的其他班级(课程菜单)

public void render(Graphics2D g) {
    ....
    ....
    gradient = new GradientPaint(100, 150, setStartColor(), 200, 200,        Color.gray);
    g.setPaint(gradient);
    g.fill(startButton);

} 

public Color setStartColor() {
    if (mouseInStart) {
        return Color.red;
    } else {
        return Color.white;
    }
}


public void update() {     <--- and this is to keep checking if your mouse is in start.  This is part of the giant game loop.
    mouseInStart=mouseInput.mouseInStart();
    mouseInLoad=mouseInput.mouseInLoad();
    mouseInQuit=mouseInput.mouseInQuit();   
}