function playgame() {
rollDice(); //two dice rolls
drawDice(); //displays the dice
setPosition(); //update player position
pastGo(); //checks if player went past GO
movePiece(); //moves monopoly board piece to where it landed
checkDouble(); //if double go back to playgame(), so changeTurn() wil not run.
changeTurn();
};
当玩家按下“掷骰子”按钮时,函数playgame()
最初会运行。
当双重发生时,会调用该函数,但这不会与播放器交互。
我想将“掷骰子”按钮的文本更改为“再次滚动”并仅在玩家按下“再次滚动”按钮时运行playgame()
。那么代码需要进入checkDouble()
?