让JTextArea出现在我的游戏视图中

时间:2015-01-08 21:45:02

标签: java swing game-center

我正在开发一个必须写单词的简单游戏。因此,我教会创建一个TextArea,其中键入的单词,我需要一个滚动,可以看到所有的单词。但我有一个渲染方法,有这个:

public void onRender(Graphics2D g) {
    g.drawImage(imgBG, 0,0, null); //draws my background
    g.setColor(Color.WHITE);
    g.setFont(titulo);
    g.drawString("Type the Word!", 260, 240);
    g.setColor(Color.darkGray);

    for(int i=0;i < wordFind.length();i++)
    {
        g.fillRect(inicioTraco+(60*i),yTraco,40,10);
    }
    if(tag_s == true)
    {
        tag_s = false;
        g.setFont(titulo);
        g.drawString("s",posicao, 100);
    }
    this.getMainWindow().add(new JTextArea("Test",10,20));

}

getMainWindow是一个返回我的主JFrame的方法,我把这个JTextArea用来显示单词。

但它并没有出现在我的游戏中。

我教会做一个白色的直肠(正确),但它不会有sc ..

所以我不知道该怎么做。有人能清醒吗?

感谢。

0 个答案:

没有答案