Skip to content

Commit

Permalink
Update cours12.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcmontmorency authored Nov 15, 2024
1 parent bb51643 commit 17c0b34
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion docs/582-301-interactivite-ludique/cours12.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,29 @@ tags:

[STOP]

# Sauvegarde et chargement
# Cours 12

## Transition de scène

play.once('pointerdown', () => {

const fx = this.cameras.main.postFX.addWipe();

this.scene.transition({
target: 'MainGame',
duration: 2000,
moveBelow: true,
onUpdate: (progress) => {

fx.progress = progress;

}
});
});

## Particules

## Sauvegarde et chargement

Sauvegardes et chargement de partie
—IndexedDB
Expand Down

0 comments on commit 17c0b34

Please sign in to comment.