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>
103 lines
1.9 KiB
Markdown
103 lines
1.9 KiB
Markdown
---
|
|
id: 657b72cbdef32ec0b1a24afb
|
|
title: Task 30
|
|
challengeType: 19
|
|
dashedName: task-30
|
|
---
|
|
|
|
<!-- (audio) Tom: Wow! Electric or acoustic? Sophie: Electric, for sure! -->
|
|
|
|
# --description--
|
|
|
|
When you hear about different types of guitars, two common kinds might come up: `electric` and `acoustic`. `Electric guitars` usually need something called an amplifier to be loud enough to hear, while `acoustic guitars` can be heard without any extra equipment.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Listen to the dialogue and choose the correct type of guitar Sophie prefers.
|
|
|
|
## --answers--
|
|
|
|
Electric Guitar
|
|
|
|
---
|
|
|
|
Acoustic Guitar
|
|
|
|
### --feedback--
|
|
|
|
Sophie makes it very clear which type of guitar she likes. Remember, the one she prefers needs an amplifier to be loud.
|
|
|
|
## --video-solution--
|
|
|
|
1
|
|
|
|
# --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": 15.4,
|
|
"finishTimestamp": 19.52
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1.1,
|
|
"finishTime": 3.1,
|
|
"dialogue": {
|
|
"text": "Wow! Electric or acoustic?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 3.2
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 3.3
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 3.3,
|
|
"finishTime": 5.12,
|
|
"dialogue": {
|
|
"text": "Electric for sure.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 5.62
|
|
}
|
|
]
|
|
}
|
|
```
|