我从txt文件加载地图时遇到问题。 代码编译,但它没有显示墙和点,任何解决方案?
public String getMap(int x, int y){
String index = Mapa[y].substring(x, x+1);
return index;
}
public void paint(Graphics g) {
super.paint(g);
g.drawImage(pacmanRightOne, pozX, pozY, this);
for(int x=0; x<14; x++){
for(int y=0; y<14; y++){
if(getMap(x ,y ).equals("s")){
g.drawImage(getWall(),x ,y , this);
}
if(getMap(x,y).equals("k")){
g.drawImage(getDot(),x ,y, this);
}
}
}
}