Skip to content

Commit

Permalink
Make the codebase consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouh committed Sep 25, 2024
1 parent 58500ba commit 09bc4fe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import {
OBJECT_3D_IN_APP_TUTORIAL_ID,
KNIGHT_PLATFORMER_IN_APP_TUTORIAL_ID,
TOP_DOWN_RPG_MOVEMENT_ID,
FIRE_A_BULLET,
COOP_PLATFORMER,
TILEMAP_PLATFORMER,
FIRE_A_BULLET_ID,
COOP_PLATFORMER_ID,
TILEMAP_PLATFORMER_ID,
guidedLessonsIds,
} from '../../../../Utils/GDevelopServices/InAppTutorial';
import MultiplierScore from './Icons/MultiplierScore';
Expand Down Expand Up @@ -180,21 +180,21 @@ const GuidedLessons = ({ selectInAppTutorial, lessonsIds }: Props) => {
renderImage: props => <TopDownRPGMovement {...props} />,
},
{
id: FIRE_A_BULLET,
id: FIRE_A_BULLET_ID,
title: t`Fire a Bullet`,
description: t`Learn how to fire bullets with the help of a behavior. Get ready for a Star Wars show.`,
durationInMinutes: 3,
renderImage: props => <FireABullet {...props} />,
},
{
id: COOP_PLATFORMER,
id: COOP_PLATFORMER_ID,
title: t`The basics of Multiplayer`,
description: t`Learn how to use the multiplayer behavior and the ownership system in this co-op platformer.`,
durationInMinutes: 3,
renderImage: props => <CoopPlatformer {...props} />,
},
{
id: TILEMAP_PLATFORMER,
id: TILEMAP_PLATFORMER_ID,
title: t`The basics of Tilemap`,
description: t`Learn how to use the tilemap object and the event that goes with it.`,
durationInMinutes: 1,
Expand Down
12 changes: 6 additions & 6 deletions newIDE/app/src/Utils/GDevelopServices/InAppTutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export const TIMER_IN_APP_TUTORIAL_ID = 'timer';
export const OBJECT_3D_IN_APP_TUTORIAL_ID = 'object3d';
export const KNIGHT_PLATFORMER_IN_APP_TUTORIAL_ID = 'knightPlatformer';
export const TOP_DOWN_RPG_MOVEMENT_ID = 'topDownRPGMovement';
export const FIRE_A_BULLET = 'fireABullet';
export const COOP_PLATFORMER = 'coopPlatformer';
export const TILEMAP_PLATFORMER = 'tilemapPlatformer';
export const FIRE_A_BULLET_ID = 'fireABullet';
export const COOP_PLATFORMER_ID = 'coopPlatformer';
export const TILEMAP_PLATFORMER_ID = 'tilemapPlatformer';

export const guidedLessonsIds = [
PLINKO_MULTIPLIER_IN_APP_TUTORIAL_ID,
Expand All @@ -27,9 +27,9 @@ export const guidedLessonsIds = [
OBJECT_3D_IN_APP_TUTORIAL_ID,
KNIGHT_PLATFORMER_IN_APP_TUTORIAL_ID,
TOP_DOWN_RPG_MOVEMENT_ID,
FIRE_A_BULLET,
COOP_PLATFORMER,
TILEMAP_PLATFORMER,
FIRE_A_BULLET_ID,
COOP_PLATFORMER_ID,
TILEMAP_PLATFORMER_ID,
];

export type InAppTutorialShortHeader = {|
Expand Down

0 comments on commit 09bc4fe

Please sign in to comment.