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>
93 lines
1.6 KiB
Markdown
93 lines
1.6 KiB
Markdown
---
|
|
id: 657cfe38b7aa33903ac91d6d
|
|
title: Task 75
|
|
challengeType: 19
|
|
dashedName: task-75
|
|
---
|
|
|
|
# --description--
|
|
|
|
The adjective `supportive` is used to describe someone who provides encouragement or assistance to others. Think of it like a strong pillar that holds up a building - a supportive person helps to hold you up when you need it.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does `supportive` mean when talking about a person?
|
|
|
|
## --answers--
|
|
|
|
They make things difficult for others.
|
|
|
|
### --feedback--
|
|
|
|
Making things difficult is the opposite of being supportive.
|
|
|
|
---
|
|
|
|
They give help and encouragement.
|
|
|
|
---
|
|
|
|
They are always asking for help.
|
|
|
|
### --feedback--
|
|
|
|
Asking for help is not related to being supportive to others.
|
|
|
|
---
|
|
|
|
They ignore others' needs.
|
|
|
|
### --feedback--
|
|
|
|
Ignoring others' needs is not a characteristic of a supportive person.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 51.02,
|
|
"finishTimestamp": 53.02
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.00,
|
|
"dialogue": {
|
|
"text": "She's supportive and she helps us a lot.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 3.50
|
|
}
|
|
]
|
|
}
|
|
```
|