Skip to content

Commit

Permalink
Update GuidedLessons.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouh committed Feb 6, 2025
1 parent 8c98239 commit bdd48e2
Showing 1 changed file with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,6 @@ const GuidedLessons = ({ selectInAppTutorial, lessonsIds }: Props) => {
durationInMinutes: 1,
renderImage: props => <Platformer {...props} />,
},
{
id: OBJECT_3D_IN_APP_TUTORIAL_ID,
title: t`3D platforms`,
description: t`Place 3D platforms in this 2D platformer, creating a path to the end.`,
durationInMinutes: 2,
renderImage: props => <Object3D {...props} />,
},
{
id: CAMERA_PARALLAX_IN_APP_TUTORIAL_ID,
title: t`Background and cameras`,
Expand All @@ -163,11 +156,11 @@ const GuidedLessons = ({ selectInAppTutorial, lessonsIds }: Props) => {
renderImage: props => <Joystick {...props} />,
},
{
id: COOP_PLATFORMER_ID,
title: t`Co-op Multiplayer`,
description: t`Transform this platformer into a co-op game, where two players can play together.`,
durationInMinutes: 3,
renderImage: props => <CoopPlatformer {...props} />,
id: OBJECT_3D_IN_APP_TUTORIAL_ID,
title: t`3D platforms`,
description: t`Place 3D platforms in this 2D platformer, creating a path to the end.`,
durationInMinutes: 2,
renderImage: props => <Object3D {...props} />,
},
{
id: HEALTH_BAR_IN_APP_TUTORIAL_ID,
Expand All @@ -176,6 +169,20 @@ const GuidedLessons = ({ selectInAppTutorial, lessonsIds }: Props) => {
durationInMinutes: 2,
renderImage: props => <HealthBar {...props} />,
},
{
id: TILEMAP_PLATFORMER_ID,
title: t`Paint a Level with Tiles`,
description: t`Use a Tilemap to build a level and change it dynamically during the game.`,
durationInMinutes: 1,
renderImage: props => <TilemapPlatformer {...props} />,
},
{
id: COOP_PLATFORMER_ID,
title: t`Co-op Multiplayer`,
description: t`Transform this platformer into a co-op game, where two players can play together.`,
durationInMinutes: 3,
renderImage: props => <CoopPlatformer {...props} />,
},
{
id: FIRE_A_BULLET_ID,
title: t`Fire a Bullet`,
Expand All @@ -190,13 +197,6 @@ const GuidedLessons = ({ selectInAppTutorial, lessonsIds }: Props) => {
durationInMinutes: 2,
renderImage: props => <Timer {...props} />,
},
{
id: TILEMAP_PLATFORMER_ID,
title: t`Paint a Level with Tiles`,
description: t`Use a Tilemap to build a level and change it dynamically during the game.`,
durationInMinutes: 1,
renderImage: props => <TilemapPlatformer {...props} />,
},
{
id: PLINKO_MULTIPLIER_IN_APP_TUTORIAL_ID,
title: t`Score multiplier`,
Expand Down

0 comments on commit bdd48e2

Please sign in to comment.