tail = 5;
这是尾部开始长度。
if(ax==px && ay==py) {
tail++;
ax=Math.floor(Math.random()*tc);
ay=Math.floor(Math.random()*tc);
}
Tail ++就是我想要改变的东西,但是我不能仅仅为尾长添加一个特定的数量。
答案 0 :(得分:1)
tail++;
将tail
的值增加1。它与tail = tail + 1;
相同。
如果您想要将其更改为其他值(例如5
),请执行以下操作:tail += 5;
。它与tail = tail + 5;
相同。