我目前正在开发一个小游戏以熟悉画布的东西 - 现在我有一个这样的菜单类
function Menu(x,y,width,height,...,game){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
// ...
this.render = function(){
game.stage.fillRect(this.x, this.y, this.width, this.height); // draw background
// ...
game.stage.fillText("MENU", this.x + 20, this.y + 10);
}
}
是否可以将this.x
和 设置this.y
为某种默认值,这样我就不必this.x + ...
每次想在菜单中定位某些东西时都写?