Java Swing JFrame禁用鼠标悬停以进行叠加

时间:2016-12-21 17:08:22

标签: java swing jframe overlay mouse

我正在尝试使用swing(JFrame)为csgo制作叠加层 我已经完成了我需要的一切,但有一个我无法解决的小错误。我到处都看过如何修复它,我无法弄明白!

每当我将鼠标悬停在正在渲染的任何东西上时,它都会让我的鼠标“聚焦”并将我标记出游戏!

package com.rigadrinksbleach.csgo.external.overlay;
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;

import com.rigadrinksbleach.csgo.external.Start;
import com.rigadrinksbleach.csgo.external.hack.Hack;

public class ExternalOverlay extends JFrame {

public ExternalOverlay() {
    super("Overlay");
    this.setUndecorated(true);
    this.setBackground(new Color(0, 0, 0, 0));
    this.setBounds(0, 0, 1920, 1080);
    this.setAlwaysOnTop(true);
    this.getContentPane().setLayout(new java.awt.FlowLayout());
    this.setVisible(true);
}

public void loop() {
    this.repaint();
}

public void draw(Graphics g) {
    for(Hack hack : Start.getHacks().getHacks()) {
        hack.draw2d(g);
    }
}

@Override
public void paint(Graphics g) {
    super.paint(g);
    //g.setColor(new Color(255, 0, 0));
    //g.drawRect(0, 0, this.getBounds().width - 1 - this.getBounds().x, this.getBounds().height - 1 - this.getBounds().y); //debug border
    this.draw(g);
}

}

Gif of the problem 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:-1)

我知道解决这个问题。 只需将setVisible更改为False。