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>
85 lines
1.6 KiB
Markdown
85 lines
1.6 KiB
Markdown
---
|
|
id: 657b5d614d85dd79d21670de
|
|
title: Task 22
|
|
challengeType: 22
|
|
dashedName: task-22
|
|
---
|
|
|
|
<!-- Sophie: Hey, Tom! I saw you taking lots of pics with your cell phone outside the building. Are you into photography?
|
|
|
|
Tom: Yes, I love it, but I'm only practicing. -->
|
|
|
|
# --description--
|
|
|
|
In a conversation, when you agree with someone but want to add more information, you can use `Yes... but` to continue your point.
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`BLANK, I love it BLANK I'm only practicing.`
|
|
|
|
## --blanks--
|
|
|
|
`Yes`
|
|
|
|
### --feedback--
|
|
|
|
Tom agrees with Sophie first and then uses a word to add more information about his experience with photography.
|
|
|
|
---
|
|
|
|
`but`
|
|
|
|
### --feedback--
|
|
|
|
Tom agrees with Sophie first and then uses a word to add more information about his experience with photography.
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-breakroom.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-2.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 5.50,
|
|
"finishTimestamp": 7.76
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.26,
|
|
"dialogue": {
|
|
"text": "Yes, I love it, but I'm only practicing.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 3.76
|
|
}
|
|
]
|
|
}
|
|
```
|