0

我正在 p5.js 中用 JavaScript 制作太阳能系统生成器,我想从箭头函数返回一个 rgb 值数组,但它不起作用。星星是白色的,而不是黄色、橙色或红色。

class Star {
  constructor(x, y) {
    this.x = x;
    this.y = y;
    this.size = random(50, 70);
    this.color = () => {
      let colorChoice = floor(random(6));
      switch(colorChoice) {
        case 0: case 1: case 2: case 3:
          return [255, 255, 0];
          break;
        case 4:
          return [255, 150, 0];
          break;
        case 5:
          return [255, 0, 0];
          break;
      }
    }
  }

  show() {
    noStroke();
    fill(this.color[0], this.color[1], this.color[2]);
    circle(this.x, this.y, this.size);
  }
}

函数本身或其他地方有问题吗?

4

1 回答 1

1

this.color- 是一个函数。尝试将您的show()方法更新为

let color = this.color();
fill(color[0], color[1], color[2]);
于 2020-04-28T11:52:10.977 回答