small fixes
This commit is contained in:
parent
453d5424c5
commit
2be130aedc
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ export interface State {
|
||||||
const store = create<State>((set) => ({
|
const store = create<State>((set) => ({
|
||||||
uid: null,
|
uid: null,
|
||||||
showScore: false,
|
showScore: false,
|
||||||
currentIntroStep: 0,
|
currentIntroStep: 1,
|
||||||
revealablesFinished: 0,
|
revealablesFinished: 0,
|
||||||
currentScene: Scenes.OVERVIEW,
|
currentScene: Scenes.OVERVIEW,
|
||||||
currentSubproject: null,
|
currentSubproject: null,
|
||||||
|
|
|
||||||
|
|
@ -166,7 +166,7 @@ export class Intro {
|
||||||
text: "Hey there! Need help here? You'll have to touch the parts of the project you want to take a look at with you character's head. As soon as the project part (packages/...) is highlighted, you can click it to dive deeper into what lies behind 🔬",
|
text: "Hey there! Need help here? You'll have to touch the parts of the project you want to take a look at with you character's head. As soon as the project part (packages/...) is highlighted, you can click it to dive deeper into what lies behind 🔬",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, 3000);
|
}, 6000);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue