※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※オフスクリーンバッファ処理を行うrunメソッド
public void run(){
Graphics g = offImg.getGraphics();
try {
while(KissOfDeath){
if (lastX + moveX < 0 || (lastX + moveX) > (c1.getWidth() - 50)){
moveX *= -1;
}
if (lastY + moveY < 0 || (lastY + moveY) > (c1.getHeight() - 50)){
moveY *= -1;
}
lastX += moveX;
lastY += moveY;
g.drawImage(img1,0,0,this);
g.drawImage(img2,lastX,lastY,this);
c1.repaint();
t1.sleep(100);
}
} catch(Exception e){
System.out.println(e);
}
g.dispose();
}
| << 前へ |