Open bschorchit opened 6 years ago
No tutorial está faltando o último else:
function update () { // controle pelas setas esquerda direita cima e baixo do teclado if (cursors.left.isDown) { hamtaro.x -= 3 hamtaro.anims.play('esquerda', true) } else if (cursors.right.isDown) { hamtaro.x += 3 hamtaro.anims.play('direita', true) } else if (cursors.up.isDown) { hamtaro.y -= 2 hamtaro.anims.play('baixo', true) } else if (cursors.down.isDown) { hamtaro.y += 2 hamtaro.anims.play('cima', true) } else { hamtaro.anims.play('parado', true) } }
No tutorial está faltando o último else:
function update () { // controle pelas setas esquerda direita cima e baixo do teclado if (cursors.left.isDown) { hamtaro.x -= 3 hamtaro.anims.play('esquerda', true) } else if (cursors.right.isDown) { hamtaro.x += 3 hamtaro.anims.play('direita', true) } else if (cursors.up.isDown) { hamtaro.y -= 2 hamtaro.anims.play('baixo', true) } else if (cursors.down.isDown) { hamtaro.y += 2 hamtaro.anims.play('cima', true) } else { hamtaro.anims.play('parado', true) } }