gpt4 book ai didi

javascript - 这个特定的函数指的是什么?

转载 作者:行者123 更新时间:2023-11-28 14:25:55 25 4
gpt4 key购买 nike

我正在分析这段代码(JavaScript 新手),它是一个简单的 flappy 小鸟游戏的一部分,但无法弄清楚这个函数 this.x = width 指的是什么。 宽度到底是什么意思。

一些背景

  function Pipe() {
this.spacing = 175;
this.top = random(height / 6, 3 / 4 * height);
this.bottom = height - (this.top + this.spacing);
this.x = width;
this.w = 80;
this.speed = 4 ;

this.highlight = false;

this.hits = function(bird) {
if (bird.y < this.top || bird.y > height - this.bottom) {
if (bird.x > this.x && bird.x < this.x + this.w) {
this.highlight = true;
return true;
}
}
this.highlight = false;
return false;
}

this.show = function() {
fill(255);
if (this.highlight) {
fill(255, 0, 0);
}
rect(this.x, 0, this.w, this.top);
rect(this.x, height-this.bottom, this.w, this.bottom);
}

this.update = function() {
this.x -= this.speed;
}

this.offscreen = function() {
if (this.x < -this.w) {
return true;
} else {
return false;
}
}


}

如果有人能帮助我解决这个问题,我将非常感激。

最佳答案

在本例中,width 引用的变量必须在 Pipe() 函数外部定义。 高度也是如此。

关于javascript - 这个特定的函数指的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53269523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com