我想獲得一個功能,當你按下回車鍵,你開始遊戲,但它不工作。沒有錯誤。 我按照教程。按[enter]開始遊戲,沒有錯誤
這裏是我的代碼:如果按Enter按鈕,在它運行的瞬間按下
import greenfoot.*;
/**
* Write a description of class Menu here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Menu extends World
{
/**
* Constructor for objects of class Menu.
*
*/
public Menu()
{
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
super(800, 500, 1);
prepare();
}
public void start()
{
{
if(Greenfoot.isKeyDown("ENTER"))
{
MinionWorld MinionWorld= new MinionWorld();
Greenfoot.setWorld(MinionWorld);
}
}
}
/**
* Prepare the world for the start of the program. That is: create the initial
* objects and add them to the world.
*/
private void prepare()
{
Controls controls = new Controls();
addObject(controls, 300, 100);
controls.setLocation(175, 50);
}
}
您沒有提供的相關性,如'Greenfoot','MinionWorld'和'Controls'。 – Jagger
你使用GUI還是隻使用命令行? –
請添加「greenfoot」作爲標籤。同時在下面檢查我的答案。 – mirmdasif