Skip to content

Commit

Permalink
Actualizo proximos pasos
Browse files Browse the repository at this point in the history
  • Loading branch information
IsiAliEmir committed Oct 24, 2024
1 parent 590e5ab commit fcf86d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions ProximosPasos.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
- [X] Agregar más consumibles (objetos distintos).
- [X] Agregar la pelota.
- [ ] Modelar interacción con la pelota (que la patee en una direccion).
- [ ] Revisar colisión con consumibles (que le suba la energia y que hable, y que el consumible desaparezca (y cómo vuelve a aparecer otro?)).
- [ ] Revisar colisión con consumibles (que el consumible desaparezca (y cómo vuelve a aparecer otro?)).
- [ ] Modelar colisión con jugador rival? (que lo empuje).
- [ ] Agregar sonidos (de fondo, en colisiones, etc.).
- [X] Agregar sonido de ambiente.
- [ ] Agregar sonidos de colisiones.
- [ ] Modelar mecánica de goles............y de fin de partida.
- [ ] Agregar menú?
8 changes: 5 additions & 3 deletions main.wpgm
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ program FulbotGame {

const sonidoAmbiente = game.sound("sonidoAmbiente.mp3")
sonidoAmbiente.shouldLoop(true)
keyboard.m().onPressDo({sonidoAmbiente.volume(0)})
//keyboard.n().onPressDo({sonidoAmbiente.volume(50)}) //Por alguna razon da EvaluationError...
game.schedule(500, { sonidoAmbiente.play()} )
game.schedule(500, {
sonidoAmbiente.play()
keyboard.m().onPressDo({sonidoAmbiente.volume(0)})
//keyboard.n().onPressDo({sonidoAmbiente.volume(50)}) Por alguna razon da EvaluationError al presionar 'n'...
})

// TECLAS DE MOVIMIENTO

Expand Down

0 comments on commit fcf86d5

Please sign in to comment.