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>
96 lines
1.9 KiB
Markdown
96 lines
1.9 KiB
Markdown
---
|
|
id: 657b7bad0b215cff2128139a
|
|
title: Task 33
|
|
challengeType: 19
|
|
dashedName: task-33
|
|
---
|
|
|
|
<!-- Tom: I like landscapes and street photography, mostly. -->
|
|
|
|
|
|
# --description--
|
|
|
|
Photographers often have favorite themes or subjects they like to take pictures of, like big outdoor spaces or busy city streets.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Choose the photography themes that Tom likes from the dialogue.
|
|
|
|
## --answers--
|
|
|
|
`Photos of food and restaurants.`
|
|
|
|
### --feedback--
|
|
|
|
Think about what you might see in a big open space outside the city, or what you would encounter walking through the city streets. These are the scenes Tom enjoys capturing in his photos.
|
|
|
|
---
|
|
|
|
`Landscapes and street photography.`
|
|
|
|
---
|
|
|
|
`Pictures of friends and family.`
|
|
|
|
### --feedback--
|
|
|
|
Think about what you might see in a big open space outside the city, or what you would encounter walking through the city streets. These are the scenes Tom enjoys capturing in his photos.
|
|
|
|
---
|
|
|
|
`Portraits in a studio.`
|
|
|
|
### --feedback--
|
|
|
|
Think about what you might see in a big open space outside the city, or what you would encounter walking through the city streets. These are the scenes Tom enjoys capturing in his photos.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --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": 23.52,
|
|
"finishTimestamp": 26.14
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.62,
|
|
"dialogue": {
|
|
"text": "I like landscapes and street photography, mostly.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4.12
|
|
}
|
|
]
|
|
}
|
|
```
|