Skip to content

Commit

Permalink
Update cutscenes
Browse files Browse the repository at this point in the history
- Adjusted volume for intro cutscene
- Added music and sfx for midgmae cutscene
- Added music and sfx for final cutscene
  • Loading branch information
albrow committed Oct 26, 2023
1 parent 6751fc7 commit f9bbd3f
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions web/routes/cutscene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,26 @@ export default function Cutscene(props: CutsceneProps) {
> = useMemo(
() => ({
intro: {
vimeoVideoId: 867291789,
youTubeVideoId: "xoE_SUpf2HM",
vimeoVideoId: 878140026,
youTubeVideoId: "y0uOxlbF6Tk",
navigateOnEnd: () => {
navigateToHub();
},
},
midgame: {
vimeoVideoId: 862789284,
youTubeVideoId: "aloLB3FONN0",
vimeoVideoId: 878140313,
youTubeVideoId: "TUl2pIq0vjA",
navigateOnEnd: () => {
navigateToHub();
},
isWIP: true,
},
end: {
vimeoVideoId: 862987802,
youTubeVideoId: "hatwp7_PFso",
vimeoVideoId: 878140421,
youTubeVideoId: "ELexFB0FQys",
navigateOnEnd: () => {
navigateToHub();
},
checkpoints: [60, 94],
isWIP: true,
checkpoints: [72, 120],
},
}),
[navigateToHub]
Expand Down

0 comments on commit f9bbd3f

Please sign in to comment.