mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
905e7d5a5c
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
100 lines
2.0 KiB
Markdown
100 lines
2.0 KiB
Markdown
---
|
|
id: 657b7d1aec6d4803cf02e84f
|
|
title: Task 34
|
|
challengeType: 22
|
|
dashedName: task-34
|
|
---
|
|
|
|
<!-- Tom: And you? What kind of music do you like to play on your guitar?
|
|
Sophie: I enjoy classic rock, but any nice tune makes my day. -->
|
|
|
|
# --description--
|
|
|
|
People have different music preferences, and sometimes they might tell you about the kind of music they like to play or listen to.
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`I enjoy classic BLANK, but any nice tune makes my day.`
|
|
|
|
## --blanks--
|
|
|
|
`rock`
|
|
|
|
### --feedback--
|
|
|
|
Sophie mentions a very energetic and popular genre of music. How do we call this music genre that includes electric guitars, drums, and often loud singing?
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-breakroom.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": { "x": 50, "y": 15, "z": 1.2 },
|
|
"opacity": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"position": { "x": 50, "y": 0, "z": 1.4 },
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-2.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 26.14,
|
|
"finishTimestamp": 33.58
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 4.42,
|
|
"dialogue": {
|
|
"text": "And you? What kind of music do you like to play on your guitar?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4.43
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 4.6
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 4.98,
|
|
"finishTime": 8.44,
|
|
"dialogue": {
|
|
"text": "I enjoy classic rock, but any nice tune makes my day.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 8.94
|
|
}
|
|
]
|
|
}
|
|
```
|