feat(curriculum): add animations to block 8.1 of the English Curriculum (#55179)

Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
This commit is contained in:
miyaliu666
2024-06-18 07:40:19 +08:00
committed by GitHub
parent 6a822464fd
commit 8de63bd742
43 changed files with 3196 additions and 177 deletions

View File

@@ -7,8 +7,199 @@ dashedName: dialogue-1-during-a-weekly-meeting
# --description--
Watch the video below to understand the context of the upcoming lessons.
Watch the video to understand the context of the upcoming lessons.
# --assignment--
Watch the video
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": { "x": -25, "y": 0, "z": 1 }
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 }
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1
},
"alwaysShowDialogue": true
},
"commands": [
{
"character": "Bob",
"position": { "x": 25, "y": 0, "z": 1 },
"startTime": 0
},
{
"character": "Sarah",
"position": { "x": 70, "y": 0, "z": 1 },
"startTime": 0.5
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.2,
"dialogue": {
"text": "Hi everyone. Let's start our weekly project update meeting.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 4.52,
"finishTime": 5.66,
"dialogue": {
"text": "Sarah, would you like to begin?",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 6.32,
"finishTime": 9.24,
"dialogue": {
"text": "Sure. This week I worked on the user interface design.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 9.74,
"finishTime": 13.86,
"dialogue": {
"text": "I designed a new layout for the app and I created some mockups to show how it will look.",
"align": "right"
}
},
{
"character": "Bob",
"startTime": 14.22,
"finishTime": 17.1,
"dialogue": {
"text": "That's great, Sarah. I've also been pretty busy this week.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 17.3,
"finishTime": 21.42,
"dialogue": {
"text": "I tested the new feature we added last week. It seems to be working well.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 21.82,
"finishTime": 24.4,
"dialogue": {
"text": "And I found a few minor issues that we need to fix.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 25.22,
"finishTime": 29.22,
"dialogue": {
"text": "Thanks for catching those. As for me, I also finished the market research report.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 29.68,
"finishTime": 31.22,
"dialogue": {
"text": "I presented it to the team yesterday.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 31.58,
"finishTime": 34.72,
"dialogue": {
"text": "We've gathered valuable data that will help us make informed decisions.",
"align": "right"
}
},
{
"character": "Bob",
"startTime": 35.58,
"finishTime": 39.36,
"dialogue": {
"text": "Excellent work, team. I organized a meeting with the client to discuss their feedback.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 39.62,
"finishTime": 43.38,
"dialogue": {
"text": "They liked our progress so far and expressed satisfaction with our work.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 43.98,
"finishTime": 47.3,
"dialogue": {
"text": "That's wonderful to hear. It sounds like we have achieved a lot this week.",
"align": "right"
}
},
{
"character": "Bob",
"startTime": 47.66,
"finishTime": 51.12,
"dialogue": {
"text": "Yes, it's been a productive week. Let's keep up the good work.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 51.44,
"finishTime": 55.38,
"dialogue": {
"text": "Don't forget to report any issues and communicate with the team as necessary.",
"align": "left"
}
},
{
"character": "Bob",
"startTime": 55.94,
"finishTime": 58.76,
"dialogue": {
"text": "Our collaboration is key to our success.",
"align": "left"
}
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 },
"startTime": 59.26
},
{
"character": "Bob",
"position": { "x": -25, "y": 0, "z": 1 },
"startTime": 59.76
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-1
---
<!--
AUDIO REFERENCE:
Bob: Hi everyone, let's start our weekly project update meeting. Sarah, would you like to begin?
-->
<!-- (Audio) Bob: Hi everyone, let's start our weekly project update meeting. Sarah, would you like to begin? -->
# --description--
@@ -43,3 +40,60 @@ It refers to something happening once a week. In this case, the project update m
### --feedback--
It means to start something. Bob is asking Sarah if she would like to start talking about her part of the project.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 0,
"finishTimestamp": 4.66
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.2,
"dialogue": {
"text": "Hi everyone. Let's start our weekly project update meeting.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 4.52,
"finishTime": 5.66,
"dialogue": {
"text": "Sarah, would you like to begin?",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 6.16
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-2
---
<!--
AUDIO REFERENCE:
Sarah: Sure. This week, I worked on the user interface design. I designed a new layout for the app, and I created some mockups to show how it will look.
-->
<!-- (Audio) Sarah: Sure. This week, I worked on the user interface design. I designed a new layout for the app, and I created some mockups to show how it will look. -->
# --description--
@@ -45,3 +42,60 @@ They are preliminary models or drafts used to give an early idea of what the fin
### --feedback--
It is used to introduce a way or manner, in this case, explaining the app's design.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 5.12,
"finishTimestamp": 12.86
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 4.12,
"dialogue": {
"text": "Sure. This week I worked on the user interface design.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 4.62,
"finishTime": 8.74,
"dialogue": {
"text": "I designed a new layout for the app and I created some mockups to show how it will look.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 9.24
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-3
---
<!--
AUDIO REFERENCE:
Sarah: Sure. This week, I worked on the user interface design. I designed a new layout for the app, and I created some mockups to show how it will look.
-->
<!-- (Audio) Sarah: Sure. This week, I worked on the user interface design. I designed a new layout for the app, and I created some mockups to show how it will look. -->
# --description--
@@ -51,3 +48,60 @@ Sarah's focus was on design elements, not on writing documentation.
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 5.12,
"finishTimestamp": 12.86
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 4.12,
"dialogue": {
"text": "Sure. This week I worked on the user interface design.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 4.62,
"finishTime": 8.74,
"dialogue": {
"text": "I designed a new layout for the app and I created some mockups to show how it will look.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 9.24
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-4
---
<!--
AUDIO REFERENCE:
Bob: That's great, Sarah! Ive also been pretty busy this week. I tested the new feature we added last week. It seems to be working well. And I found a few minor issues that we need to fix.
-->
<!-- (Audio) Bob: That's great, Sarah! Ive also been pretty busy this week. I tested the new feature we added last week. It seems to be working well. And I found a few minor issues that we need to fix. -->
# --description--
@@ -53,3 +50,69 @@ This word is used to express an appearance or impression, here indicating that t
### --feedback--
It indicates that the issues found were not very large or critical.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 13.02,
"finishTimestamp": 23.4
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.08,
"dialogue": {
"text": "That's great Sarah. I've also been pretty busy this week.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 4.28,
"finishTime": 8.4,
"dialogue": {
"text": "I tested the new feature we added last week. It seems to be working well.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 8.8,
"finishTime": 11.38,
"dialogue": {
"text": "And I found a few minor issues that we need to fix.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 11.88
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-5
---
<!--
AUDIO REFERENCE:
Bob: That's great, Sarah! Ive also been pretty busy this week. I tested the new feature we added last week. It seems to be working well. And I found a few minor issues that we need to fix.
-->
<!-- (Audio) Bob: That's great, Sarah! Ive also been pretty busy this week. I tested the new feature we added last week. It seems to be working well. And I found a few minor issues that we need to fix. -->
# --description--
@@ -51,3 +48,69 @@ Bob's activities were related to testing and issue-finding, not attending a conf
## --video-solution--
1
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 13.02,
"finishTimestamp": 23.4
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.08,
"dialogue": {
"text": "That's great Sarah. I've also been pretty busy this week.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 4.28,
"finishTime": 8.4,
"dialogue": {
"text": "I tested the new feature we added last week. It seems to be working well.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 8.8,
"finishTime": 11.38,
"dialogue": {
"text": "And I found a few minor issues that we need to fix.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 11.88
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-6
---
<!--
AUDIO REFERENCE:
Sarah: Thanks for catching those. As for me, I also finished the market research report. I presented it to the team yesterday. Weve gathered valuable data that will help us make informed decisions.
-->
<!-- (Audio) Sarah: Thanks for catching those. As for me, I also finished the market research report. I presented it to the team yesterday. We've gathered valuable data that will help us make informed decisions. -->
# --description--
@@ -26,7 +23,7 @@ These terms are useful in business and technology for discussing work and decisi
## --sentence--
`Thanks for _ those. As for me, I also finished the _ research report. I presented it to the team yesterday. Weve _ valuable data that will help us make _ decisions.`
`Thanks for _ those. As for me, I also finished the _ research report. I presented it to the team yesterday. We've _ valuable data that will help us make _ decisions.`
## --blanks--
@@ -59,3 +56,69 @@ It means collected. Here, it refers to collecting data or information.
### --feedback--
It means the decisions are based on good information or knowledge.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 24.02,
"finishTimestamp": 33.72
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 5.2,
"dialogue": {
"text": "Thanks for catching those. As for me, I also finished the market research report.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.66,
"finishTime": 7.2,
"dialogue": {
"text": "I presented it to the team yesterday.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 7.56,
"finishTime": 10.7,
"dialogue": {
"text": "We've gathered valuable data that will help us make informed decisions.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 11.2
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-7
---
<!--
AUDIO REFERENCE:
Sarah: Thanks for catching those. As for me, I also finished the market research report. I presented it to the team yesterday. Weve gathered valuable data that will help us make informed decisions.
-->
<!-- (Audio) Sarah: Thanks for catching those. As for me, I also finished the market research report. I presented it to the team yesterday. Weve gathered valuable data that will help us make informed decisions. -->
# --description--
@@ -51,3 +48,69 @@ She designed the layout of the report.
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 24.02,
"finishTimestamp": 33.72
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 5.2,
"dialogue": {
"text": "Thanks for catching those. As for me, I also finished the market research report.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.66,
"finishTime": 7.2,
"dialogue": {
"text": "I presented it to the team yesterday.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 7.56,
"finishTime": 10.7,
"dialogue": {
"text": "We've gathered valuable data that will help us make informed decisions.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 11.2
}
]
}
```

View File

@@ -5,16 +5,12 @@ challengeType: 22
dashedName: task-8
---
<!--
AUDIO REFERENCE:
Bob: Excellent work, team! I organized a meeting with the client to discuss their feedback. They liked our progress so far and expressed satisfaction with our work.
-->
<!-- (Audio) Bob: Excellent work, team! I organized a meeting with the client to discuss their feedback. They liked our progress so far and expressed satisfaction with our work. -->
# --description--
`Satisfaction` is a feeling of happiness or pleasure when you achieve something or when something meets your expectations. In business, `customer satisfaction` is very important. It means the customers are happy with the products or services provided.
# --fillInTheBlank--
## --sentence--
@@ -36,3 +32,60 @@ The word is used here to describe the action of planning or arranging a meeting.
### --feedback--
In this context, it refers to the clients being pleased or content with the team's work.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 34.18,
"finishTimestamp": 42.38
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 5.18,
"dialogue": {
"text": "Excellent work team. I organized a meeting with the client to discuss their feedback.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 5.44,
"finishTime": 9.2,
"dialogue": {
"text": "They liked our progress so far and expressed satisfaction with our work.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 9.7
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-9
---
<!--
AUDIO REFERENCE:
Bob: Excellent work, team! I organized a meeting with the client to discuss their feedback. They liked our progress so far and expressed satisfaction with our work.
-->
<!-- (Audio) Bob: Excellent work, team! I organized a meeting with the client to discuss their feedback. They liked our progress so far and expressed satisfaction with our work. -->
# --description--
@@ -51,3 +48,60 @@ This option is incorrect as it contradicts the client's satisfaction with the cu
## --video-solution--
3
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 34.18,
"finishTimestamp": 42.38
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 5.18,
"dialogue": {
"text": "Excellent work team. I organized a meeting with the client to discuss their feedback.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 5.44,
"finishTime": 9.2,
"dialogue": {
"text": "They liked our progress so far and expressed satisfaction with our work.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 9.7
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-10
---
<!--
AUDIO REFERENCE:
Sarah: That's wonderful to hear. It sounds like we have achieved a lot this week.
-->
<!-- (Audio) Sarah: That's wonderful to hear. It sounds like we have achieved a lot this week. -->
# --description--
@@ -35,3 +32,51 @@ It is used here to express happiness or satisfaction about the news or informati
### --feedback--
It refers to successfully completing or reaching a goal, in this case, the team's accomplishments for the week.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 42.78,
"finishTimestamp": 46.3
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 4.52,
"dialogue": {
"text": "That's wonderful to hear. It sounds like we have achieved a lot this week.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 5.02
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-11
---
<!--
AUDIO REFERENCE:
Sarah: That's wonderful to hear. It sounds like we have achieved a lot this week.
-->
<!-- (Audio) Sarah: That's wonderful to hear. It sounds like we have achieved a lot this week. -->
# --description--
@@ -51,3 +48,51 @@ The use of `have achieved` implies that the work has already been done, not just
## --video-solution--
1
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 42.78,
"finishTimestamp": 46.3
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 4.52,
"dialogue": {
"text": "That's wonderful to hear. It sounds like we have achieved a lot this week.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 5.02
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-12
---
<!--
AUDIO REFERENCE:
Bob: Yes, it's been a productive week. Let's keep up the good work. Don't forget to report any issues and communicate with the team as needed. Our collaboration is key to our success.
-->
<!-- (Audio) Bob: Yes, it's been a productive week. Let's keep up the good work. Don't forget to report any issues and communicate with the team as necessary. Our collaboration is key to our success. -->
# --description--
@@ -46,7 +43,7 @@ It means to be unable to remember something or someone. Bob is emphasizing the i
---
`needed`
`necessary`
### --feedback--
@@ -59,3 +56,69 @@ It suggests doing something when it is necessary, in this case, communicating wi
### --feedback--
In this context, it means very important. Bob is emphasizing that collaboration is crucial to their success.
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 46.46,
"finishTimestamp": 57.76
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.66,
"dialogue": {
"text": "Yes, it's been a productive week. Let's keep up the good work.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 4.98,
"finishTime": 8.92,
"dialogue": {
"text": "Don't forget to report any issues and communicate with the team as necessary.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 9.48,
"finishTime": 12.3,
"dialogue": {
"text": "Our collaboration is key to our success.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 12.8
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-13
---
<!--
AUDIO REFERENCE:
Bob: Yes, it's been a productive week. Let's keep up the good work. Don't forget to report any issues and communicate with the team as needed. Our collaboration is key to our success.
-->
<!-- (Audio) Bob: Yes, it's been a productive week. Let's keep up the good work. Don't forget to report any issues and communicate with the team as needed. Our collaboration is key to our success. -->
# --description--
@@ -51,3 +48,69 @@ To continue the good work, report any issues, and communicate as needed
## --video-solution--
4
# --scene--
```json
{
"setup": {
"background": "company1-boardroom.png",
"characters": [
{
"character": "Bob",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-1.mp3",
"startTime": 1,
"startTimestamp": 46.46,
"finishTimestamp": 57.76
}
},
"commands": [
{
"character": "Bob",
"opacity": 1,
"startTime": 0
},
{
"character": "Bob",
"startTime": 1,
"finishTime": 4.66,
"dialogue": {
"text": "Yes, it's been a productive week. Let's keep up the good work.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 4.98,
"finishTime": 8.92,
"dialogue": {
"text": "Don't forget to report any issues and communicate with the team as necessary.",
"align": "center"
}
},
{
"character": "Bob",
"startTime": 9.48,
"finishTime": 12.3,
"dialogue": {
"text": "Our collaboration is key to our success.",
"align": "center"
}
},
{
"character": "Bob",
"opacity": 0,
"startTime": 12.8
}
]
}
```

View File

@@ -7,8 +7,190 @@ dashedName: dialogue-2-a-manager-and-a-direct-report-in-a-performance-review
# --description--
Watch the video below to understand the context of the upcoming lessons.
Watch the video to understand the context of the upcoming lessons.
# --assignment--
Watch the video
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": { "x": -25, "y": 0, "z": 1 }
},
{
"character": "Brian",
"position": { "x": 125, "y": 0, "z": 1 }
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1
},
"alwaysShowDialogue": true
},
"commands": [
{
"character": "Maria",
"position": { "x": 25, "y": 0, "z": 1 },
"startTime": 0
},
{
"character": "Brian",
"position": { "x": 70, "y": 0, "z": 1 },
"startTime": 0.5
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 3.58,
"dialogue": {
"text": "Hi there, Brian. It's time for our performance review.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 3.82,
"finishTime": 4.64,
"dialogue": {
"text": "How's everything going?",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 4.94,
"finishTime": 5.8,
"dialogue": {
"text": "Things are going well.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 5.98,
"finishTime": 8.74,
"dialogue": {
"text": "Last week, I worked on improving our project's documentation.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 9.22,
"finishTime": 13.76,
"dialogue": {
"text": "I updated the user manual and added some FAQs based on customer feedback.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 14.36,
"finishTime": 17.28,
"dialogue": {
"text": "I also attended the customer support training session.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 17.48,
"finishTime": 20.36,
"dialogue": {
"text": "It helped me to understand the issues our customers are facing,",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 20.36,
"finishTime": 23.5,
"dialogue": {
"text": "and I learned some strategies for better addressing their concerns.",
"align": "right"
}
},
{
"character": "Maria",
"startTime": 24.38,
"finishTime": 26.98,
"dialogue": {
"text": "Excellent. Learning more about our customers is essential.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 27.44,
"finishTime": 30.72,
"dialogue": {
"text": "I appreciate your dedication. Can you tell me about your long-term goals?",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 30.72,
"finishTime": 35.62,
"dialogue": {
"text": "Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated,",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 35.82,
"finishTime": 40,
"dialogue": {
"text": "and I intend to improve our customer support process based on the training I received.",
"align": "right"
}
},
{
"character": "Maria",
"startTime": 40.58,
"finishTime": 41.82,
"dialogue": {
"text": "It sounds like you're on the right track.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 42.18,
"finishTime": 45.24,
"dialogue": {
"text": "Keep up the good work, and don't hesitate to reach out if you need any support.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 45.7,
"finishTime": 47.64,
"dialogue": {
"text": "Thanks, Maria. I appreciate your guidance.",
"align": "right"
}
},
{
"character": "Brian",
"position": { "x": 125, "y": 0, "z": 1 },
"startTime": 48.14
},
{
"character": "Maria",
"position": { "x": -25, "y": 0, "z": 1 },
"startTime": 48.64
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 22
dashedName: task-14
---
<!--
AUDIO REFERENCE:
Maria: Hi there, Brian. It's time for our performance review. How's everything going?
-->
<!-- (Audio) Maria: Hi there, Brian. It's time for our performance review. How's everything going? -->
# --description--
A `performance review` is a regular evaluation of an employee's work by their manager. It's a time to discuss how well you are doing your job, any successes you've had, and areas where you can improve.
A `performance review` is a regular evaluation of an employee's work by their manager. It's a chance to discuss how well you are doing your job, any successes you've had, and areas where you can improve.
For example, in a tech company, a `performance review` might focus on the number of projects completed, the quality of work, and teamwork skills.
@@ -37,3 +34,60 @@ In this context, it refers to how well someone is doing their job. The review is
### --feedback--
It is a general inquiry about how all aspects of work or life are going, often used to start a conversation.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": {
"x": 50,
"y": 0,
"z": 1.5
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 0,
"finishTimestamp": 3.64
}
},
"commands": [
{
"character": "Maria",
"opacity": 1,
"startTime": 0
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 3.58,
"dialogue": {
"text": "Hi there, Brian. It's time for our performance review.",
"align": "center"
}
},
{
"character": "Maria",
"startTime": 3.82,
"finishTime": 4.64,
"dialogue": {
"text": "How's everything going?",
"align": "center"
}
},
{
"character": "Maria",
"opacity": 0,
"startTime": 5.14
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-15
---
<!--
AUDIO REFERENCE:
Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session.
-->
<!-- (Audio) Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session. -->
# --description--
@@ -57,3 +54,78 @@ It means that Brian was present at or participated in an event, here referring t
### --feedback--
It refers to the session Brian attended, designed to teach or enhance skills, particularly in customer support.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 3.74,
"finishTimestamp": 16.28
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 2.06,
"dialogue": {
"text": "Things are going well.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 2.24,
"finishTime": 5,
"dialogue": {
"text": "Last week, I worked on improving our project's documentation.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 5.48,
"finishTime": 10.02,
"dialogue": {
"text": "I updated the user manual and added some FAQs based on customer feedback.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 10.62,
"finishTime": 13.54,
"dialogue": {
"text": "I also attended the customer support training session.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 14.04
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 19
dashedName: task-16
---
<!--
AUDIO REFERENCE:
Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session.
-->
<!-- (Audio) Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session. -->
# --description--
This task checks your comprehension of Brian's activities from last week.
Listen to the audio and answer the question.
# --question--
@@ -51,3 +48,78 @@ This option is incorrect as Brian mentioned actively working on project document
## --video-solution--
3
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 3.74,
"finishTimestamp": 16.28
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 2.06,
"dialogue": {
"text": "Things are going well.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 2.24,
"finishTime": 5,
"dialogue": {
"text": "Last week, I worked on improving our project's documentation.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 5.48,
"finishTime": 10.02,
"dialogue": {
"text": "I updated the user manual and added some FAQs based on customer feedback.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 10.62,
"finishTime": 13.54,
"dialogue": {
"text": "I also attended the customer support training session.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 14.04
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-17
---
<!--
AUDIO REFERENCE:
Brian: It helped me understand the issues our customers are facing, and I learned some strategies for better addressing their concerns.
-->
<!-- (Audio) Brian: It helped me to understand the issues our customers are facing, and I learned some strategies for better addressing their concerns. -->
# --description--
@@ -20,7 +17,7 @@ Brian: It helped me understand the issues our customers are facing, and I learne
## --sentence--
`It helped me understand the issues our customers are facing, and I learned some _ for better _ their _.`
`It helped me to understand the issues our customers are facing, and I learned some _ for better _ their _.`
## --blanks--
@@ -45,3 +42,60 @@ It means dealing with or handling, in this context, how to manage customers' iss
### --feedback--
It refers to the problems or challenges the customers are experiencing.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 16.48,
"finishTimestamp": 22.5
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 3.88,
"dialogue": {
"text": "It helped me to understand the issues our customers are facing,",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 3.88,
"finishTime": 7.02,
"dialogue": {
"text": "and I learned some strategies for better addressing their concerns.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 7.52
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 19
dashedName: task-18
---
<!--
AUDIO REFERENCE:
Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session. It helped me understand the issues our customers are facing, and I learned some strategies for better addressing their concerns.
-->
<!-- (Audio) Brian: Things are going well. Last week, I worked on improving our project's documentation. I updated the user manual and added some FAQs based on customer feedback. I also attended the customer support training session. It helped me understand the issues our customers are facing, and I learned some strategies for better addressing their concerns. -->
# --description--
This task tests your comprehension of what helped Brian understand his customers' problems and what he learned in the process.
Listen to the audio and answer the question.
# --question--
@@ -51,3 +48,96 @@ This option is incorrect as it was the training session, not just working on doc
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 3.74,
"finishTimestamp": 22.5
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 2.06,
"dialogue": {
"text": "Things are going well.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 2.24,
"finishTime": 5,
"dialogue": {
"text": "Last week, I worked on improving our project's documentation.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 5.48,
"finishTime": 10.02,
"dialogue": {
"text": "I updated the user manual and added some FAQs based on customer feedback.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 10.62,
"finishTime": 13.54,
"dialogue": {
"text": "I also attended the customer support training session.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 13.74,
"finishTime": 16.62,
"dialogue": {
"text": "It helped me to understand the issues our customers are facing,",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 16.62,
"finishTime": 19.76,
"dialogue": {
"text": "and I learned some strategies for better addressing their concerns.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 20.26
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-19
---
<!--
AUDIO REFERENCE:
Maria: Excellent. Learning more about our customers is essential. I appreciate your dedication. Can you tell me about your long-term goals?
-->
<!-- (Audio) Maria: Excellent. Learning more about our customers is essential. I appreciate your dedication. Can you tell me about your long-term goals? -->
# --description--
@@ -59,3 +56,60 @@ It refers to the commitment and hard work shown.
### --feedback--
In this context, it refers to goals that are planned to be achieved over an extended period.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": {
"x": 50,
"y": 0,
"z": 1.5
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 23.18,
"finishTimestamp": 29.72
}
},
"commands": [
{
"character": "Maria",
"opacity": 1,
"startTime": 0
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 3.8,
"dialogue": {
"text": "Excellent. Learning more about our customers is essential.",
"align": "center"
}
},
{
"character": "Maria",
"startTime": 4.26,
"finishTime": 7.54,
"dialogue": {
"text": "I appreciate your dedication. Can you tell me about your long-term goals?",
"align": "center"
}
},
{
"character": "Maria",
"opacity": 0,
"startTime": 8.04
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 19
dashedName: task-20
---
<!--
AUDIO REFERENCE:
Maria: Excellent. Learning more about our customers is essential. I appreciate your dedication. Can you tell me about your long-term goals?
-->
<!-- (Audio) Maria: Excellent. Learning more about our customers is essential. I appreciate your dedication. Can you tell me about your long-term goals? -->
# --description--
This task assesses your understanding of Maria's perspective.
Listen to the audio and answer the question.
# --question--
@@ -51,3 +48,60 @@ While Maria appreciates Brian's dedication, her focus is on understanding custom
## --video-solution--
3
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": {
"x": 50,
"y": 0,
"z": 1.5
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 23.18,
"finishTimestamp": 29.72
}
},
"commands": [
{
"character": "Maria",
"opacity": 1,
"startTime": 0
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 3.8,
"dialogue": {
"text": "Excellent. Learning more about our customers is essential.",
"align": "center"
}
},
{
"character": "Maria",
"startTime": 4.26,
"finishTime": 7.54,
"dialogue": {
"text": "I appreciate your dedication. Can you tell me about your long-term goals?",
"align": "center"
}
},
{
"character": "Maria",
"opacity": 0,
"startTime": 8.04
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-21
---
<!--
AUDIO REFERENCE:
Brian: Of course. By the end of the quarter, I plan to have the documentation Im working on fully updated, and I intend to improve our customer support process based on the training I received.
-->
<!-- (Audio) Brian: Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated, and I intend to improve our customer support process based on the training I received. -->
# --description--
@@ -22,7 +19,7 @@ For example, in business, a company might review its sales at the end of each `q
## --sentence--
`Of course. By the end of the _, I plan to have the documentation Im working on fully updated, and I _ to improve our customer support process based on the training I received.`
`Of course. By the end of the _, I plan to have the documentation I'm working on fully updated, and I _ to improve our customer support process based on the training I received.`
## --blanks--
@@ -39,3 +36,60 @@ It refers to one-fourth of the year. Brian's goal is to complete his tasks by th
### --feedback--
It means to have a plan or aim. Brian is planning to enhance the customer support process.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 29.72,
"finishTimestamp": 39
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 5.9,
"dialogue": {
"text": "Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated,",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 6.1,
"finishTime": 10.28,
"dialogue": {
"text": "and I intend to improve our customer support process based on the training I received.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 10.78
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-22
---
<!--
AUDIO REFERENCE:
Brian: Of course. By the end of the quarter, I plan to have the documentation Im working on fully updated, and I intend to improve our customer support process based on the training I received.
-->
<!-- (Audio) Brian: Of course. By the end of the quarter, I plan to have the documentation Im working on fully updated, and I intend to improve our customer support process based on the training I received. -->
# --description--
@@ -51,3 +48,60 @@ Organizing meetings is not mentioned; his plans are centered around documentatio
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 29.72,
"finishTimestamp": 39
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 5.9,
"dialogue": {
"text": "Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated,",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 6.1,
"finishTime": 10.28,
"dialogue": {
"text": "and I intend to improve our customer support process based on the training I received.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 10.78
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 19
dashedName: task-23
---
<!--
AUDIO REFERENCE:
Brian: Of course. By the end of the quarter, I plan to have the documentation Im working on fully updated, and I intend to improve our customer support process based on the training I received.
-->
<!-- (Audio) Brian: Of course. By the end of the quarter, I plan to have the documentation Im working on fully updated, and I intend to improve our customer support process based on the training I received. -->
# --description--
Practice time!
Listen to the audio and answer the question.
# --question--
@@ -51,3 +48,60 @@ Increasing sales is not mentioned; his focus is on enhancing support due to his
## --video-solution--
3
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 29.72,
"finishTimestamp": 39
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 5.9,
"dialogue": {
"text": "Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated,",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 6.1,
"finishTime": 10.28,
"dialogue": {
"text": "and I intend to improve our customer support process based on the training I received.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 10.78
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-24
---
<!--
AUDIO REFERENCE:
Maria: It sounds like you're on the right track. Keep up the good work, and don't hesitate to reach out if you need any support.
-->
<!-- (Audio) Maria: It sounds like you're on the right track. Keep up the good work, and don't hesitate to reach out if you need any support. -->
# --description--
@@ -49,3 +46,60 @@ This verb means to pause before saying or doing something because you are uncert
### --feedback--
It suggests making an effort to contact or communicate with someone.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": {
"x": 50,
"y": 0,
"z": 1.5
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 39.38,
"finishTimestamp": 44.24
}
},
"commands": [
{
"character": "Maria",
"opacity": 1,
"startTime": 0
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 2.44,
"dialogue": {
"text": "It sounds like you're on the right track.",
"align": "center"
}
},
{
"character": "Maria",
"startTime": 2.8,
"finishTime": 5.86,
"dialogue": {
"text": "Keep up the good work, and don't hesitate to reach out if you need any support.",
"align": "center"
}
},
{
"character": "Maria",
"opacity": 0,
"startTime": 6.36
}
]
}
```

View File

@@ -5,14 +5,12 @@ challengeType: 19
dashedName: task-25
---
<!--
AUDIO REFERENCE:
Maria: It sounds like you're on the right track. Keep up the good work, and don't hesitate to reach out if you need any support.
<!-- (Audio) Maria: It sounds like you're on the right track. Keep up the good work, and don't hesitate to reach out if you need any support.
-->
# --description--
Recognizing words of encouragement and offers of assistance is crucial in professional communication, as they contribute to a supportive work environment.
Listen to the audio and answer the question.
# --question--
@@ -51,3 +49,60 @@ The focus of Maria's message is encouragement and support, not requesting a deta
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": {
"x": 50,
"y": 0,
"z": 1.5
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 39.38,
"finishTimestamp": 44.24
}
},
"commands": [
{
"character": "Maria",
"opacity": 1,
"startTime": 0
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 2.44,
"dialogue": {
"text": "It sounds like you're on the right track.",
"align": "center"
}
},
{
"character": "Maria",
"startTime": 2.8,
"finishTime": 5.86,
"dialogue": {
"text": "Keep up the good work, and don't hesitate to reach out if you need any support.",
"align": "center"
}
},
{
"character": "Maria",
"opacity": 0,
"startTime": 6.36
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 22
dashedName: task-26
---
<!--
AUDIO REFERENCE:
Brian: Thanks, Maria. I appreciate your guidance.
-->
<!-- (Audio) Brian: Thanks, Maria. I appreciate your guidance. -->
# --description--
Fill in the blank in the dialogue below.
Listen to the audio and complete the sentence.
# --fillInTheBlank--
@@ -27,3 +24,51 @@ Fill in the blank in the dialogue below.
### --feedback--
In this context, it refers to the advice, support, or direction that Maria has provided to Brian.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1,
"startTimestamp": 44.5,
"finishTimestamp": 46.84
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 3.34,
"dialogue": {
"text": "Thanks, Maria. I appreciate your guidance.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 3.84
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 22
dashedName: task-27
---
<!--
AUDIO REFERENCE:
Entire dialogue
-->
<!-- (Audio) The whole dialogue -->
# --description--
Listen to the dialogue and fill in the blanks with the correct words.
Listen to the audio and complete the sentence.
# --fillInTheBlank--
@@ -51,3 +48,185 @@ It describes the type of goals Brian is setting for the future.
### --feedback--
It refers to Maria's willingness to provide assistance and support.
# --scene--
```json
{
"setup": {
"background": "interview-room3.png",
"characters": [
{
"character": "Maria",
"position": { "x": -25, "y": 0, "z": 1 }
},
{
"character": "Brian",
"position": { "x": 125, "y": 0, "z": 1 }
}
],
"audio": {
"filename": "8.1-2.mp3",
"startTime": 1
},
"alwaysShowDialogue": true
},
"commands": [
{
"character": "Maria",
"position": { "x": 25, "y": 0, "z": 1 },
"startTime": 0
},
{
"character": "Brian",
"position": { "x": 70, "y": 0, "z": 1 },
"startTime": 0.5
},
{
"character": "Maria",
"startTime": 1,
"finishTime": 3.58,
"dialogue": {
"text": "Hi there, Brian. It's time for our performance review.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 3.82,
"finishTime": 4.64,
"dialogue": {
"text": "How's everything going?",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 4.94,
"finishTime": 5.8,
"dialogue": {
"text": "Things are going well.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 5.98,
"finishTime": 8.74,
"dialogue": {
"text": "Last week, I worked on improving our project's documentation.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 9.22,
"finishTime": 13.76,
"dialogue": {
"text": "I updated the user manual and added some FAQs based on customer feedback.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 14.36,
"finishTime": 17.28,
"dialogue": {
"text": "I also attended the customer support training session.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 17.48,
"finishTime": 20.36,
"dialogue": {
"text": "It helped me to understand the issues our customers are facing,",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 20.36,
"finishTime": 23.5,
"dialogue": {
"text": "and I learned some strategies for better addressing their concerns.",
"align": "right"
}
},
{
"character": "Maria",
"startTime": 24.38,
"finishTime": 26.98,
"dialogue": {
"text": "Excellent. Learning more about our customers is essential.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 27.44,
"finishTime": 30.72,
"dialogue": {
"text": "I appreciate your dedication. Can you tell me about your long-term goals?",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 30.72,
"finishTime": 35.62,
"dialogue": {
"text": "Of course. By the end of the quarter, I plan to have the documentation I'm working on fully updated,",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 35.82,
"finishTime": 40,
"dialogue": {
"text": "and I intend to improve our customer support process based on the training I received.",
"align": "right"
}
},
{
"character": "Maria",
"startTime": 40.58,
"finishTime": 41.82,
"dialogue": {
"text": "It sounds like you're on the right track.",
"align": "left"
}
},
{
"character": "Maria",
"startTime": 42.18,
"finishTime": 45.24,
"dialogue": {
"text": "Keep up the good work, and don't hesitate to reach out if you need any support.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 45.7,
"finishTime": 47.64,
"dialogue": {
"text": "Thanks, Maria. I appreciate your guidance.",
"align": "right"
}
},
{
"character": "Brian",
"position": { "x": 125, "y": 0, "z": 1 },
"startTime": 48.14
},
{
"character": "Maria",
"position": { "x": -25, "y": 0, "z": 1 },
"startTime": 48.64
}
]
}
```

View File

@@ -7,8 +7,163 @@ dashedName: dialogue-3-sharing-accomplishments-over-lunch
# --description--
Watch the video below to understand the context of the upcoming lessons.
Watch the video to understand the context of the upcoming lessons.
# --assignment--
Watch the video
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": { "x": -25, "y": 0, "z": 1 }
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 }
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1
},
"alwaysShowDialogue": true
},
"commands": [
{
"character": "Brian",
"position": { "x": 25, "y": 0, "z": 1 },
"startTime": 0
},
{
"character": "Sarah",
"position": { "x": 70, "y": 0, "z": 1 },
"startTime": 0.5
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 4.46,
"dialogue": {
"text": "Hey, Sarah, it's been a while since we hung out like this.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 4.78,
"finishTime": 8.66,
"dialogue": {
"text": "Hey, work has kept me busy this week. I worked on the new app interface,",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 8.94,
"finishTime": 12.12,
"dialogue": {
"text": "designed some cool icons, and presented the layout to the team yesterday.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 12.68,
"finishTime": 15.16,
"dialogue": {
"text": "That sounds awesome. I tested the app for bugs.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 15.5,
"finishTime": 18.12,
"dialogue": {
"text": "We found a few, but the good news is we fixed them all.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 18.4,
"finishTime": 19.86,
"dialogue": {
"text": "It seems pretty solid now.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 20.76,
"finishTime": 24.58,
"dialogue": {
"text": "Nice work. I also attended a UX design workshop last month.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 24.76,
"finishTime": 27.36,
"dialogue": {
"text": "I learned some great techniques for user research.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 27.36,
"finishTime": 30.88,
"dialogue": {
"text": "I've applied them to our project and it helped improve the user experience.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 31.28,
"finishTime": 35.04,
"dialogue": {
"text": "That's impressive. I met with the client yesterday and they loved our progress.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 35.26,
"finishTime": 37.62,
"dialogue": {
"text": "They gave us the green light to move on to the next phase.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 38.28,
"finishTime": 40.62,
"dialogue": {
"text": "Way to go. It looks like we're making great progress.",
"align": "right"
}
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 },
"startTime": 41.12
},
{
"character": "Brian",
"position": { "x": -25, "y": 0, "z": 1 },
"startTime": 41.62
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-28
---
<!--
AUDIO REFERENCE:
Brian: Hey, Sarah! It's been a while since we hung out like this.
-->
<!-- (Audio) Brian: Hey, Sarah! It's been a while since we hung out like this. -->
# --description--
@@ -51,3 +48,51 @@ Brian's phrase implies that their meetings are not regular.
## --video-solution--
1
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 0,
"finishTimestamp": 3.46
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 4.46,
"dialogue": {
"text": "Hey, Sarah, it's been a while since we hung out like this.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 4.96
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-29
---
<!--
AUDIO REFERENCE:
Sarah: Hey! Work has kept me busy this week.
-->
<!-- (Audio) Sarah: Hey! Work has kept me busy this week. -->
# --description--
@@ -51,3 +48,51 @@ The phrase `has kept me busy` implies that Sarah had little free time, not a lot
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 3.78,
"finishTimestamp": 5.8
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 3.02,
"dialogue": {
"text": "Hey, work has kept me busy this week.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 3.52
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 22
dashedName: task-30
---
<!--
AUDIO REFERENCE:
Sarah: Hey! Work has kept me busy this week. I worked on the new app interface, designed some cool icons, and presented the layout to the team yesterday.
-->
<!-- (Audio) Sarah: Hey! Work has kept me busy this week. I worked on the new app interface, designed some cool icons, and presented the layout to the team yesterday. -->
# --description--
This task will help you practice identifying verbs in the past simple tense.
Listen to the audio and complete the sentence.
# --fillInTheBlank--
@@ -43,3 +40,60 @@ It is the past simple form of `design`, used to describe a completed action of c
### --feedback--
It is the past simple form of `present`, indicating the action of showing or displaying something that has already been done.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 3.78,
"finishTimestamp": 11.12
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 4.88,
"dialogue": {
"text": "Hey, work has kept me busy this week. I worked on the new app interface,",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.16,
"finishTime": 8.34,
"dialogue": {
"text": "designed some cool icons, and presented the layout to the team yesterday.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 8.84
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-31
---
<!--
AUDIO REFERENCE:
Brian: That sounds awesome! I tested the app for bugs. We found a few, but the good news is we fixed them all. It seems pretty solid now.
-->
<!-- (Audio) Brian: That sounds awesome! I tested the app for bugs. We found a few, but the good news is we fixed them all. It seems pretty solid now. -->
# --description--
@@ -43,3 +40,69 @@ It is the past simple form of `find`, used here to describe the discovery of bug
### --feedback--
It is the past simple form of `fix`, indicating the completed action of resolving the found bugs.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 11.68,
"finishTimestamp": 18.86
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 3.48,
"dialogue": {
"text": "That sounds awesome. I tested the app for bugs.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 3.82,
"finishTime": 6.44,
"dialogue": {
"text": "We found a few, but the good news is we fixed them all.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 6.72,
"finishTime": 8.18,
"dialogue": {
"text": "It seems pretty solid now.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 8.68
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-32
---
<!--
AUDIO REFERENCE:
Brian: That sounds awesome! I tested the app for bugs. We found a few, but the good news is we fixed them all. It seems pretty solid now.
-->
<!-- (Audio) Brian: That sounds awesome! I tested the app for bugs. We found a few, but the good news is we fixed them all. It seems pretty solid now. -->
# --description--
@@ -51,3 +48,69 @@ Preparing for a launch isn't mentioned. Brian's update is about testing and fixi
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 11.68,
"finishTimestamp": 18.86
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 3.48,
"dialogue": {
"text": "That sounds awesome. I tested the app for bugs.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 3.82,
"finishTime": 6.44,
"dialogue": {
"text": "We found a few, but the good news is we fixed them all.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 6.72,
"finishTime": 8.18,
"dialogue": {
"text": "It seems pretty solid now.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 8.68
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-33
---
<!--
AUDIO REFERENCE:
Brian: It seems pretty solid now.
-->
<!-- (Audio) Brian: It seems pretty solid now. -->
# --description--
@@ -55,3 +52,51 @@ Redesigning the app is not implied in Brian's statement about its current solid
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 17.4,
"finishTimestamp": 18.86
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 2.46,
"dialogue": {
"text": "It seems pretty solid now.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 2.96
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-34
---
<!--
AUDIO REFERENCE:
Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience.
-->
<!-- (Audio) Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience. -->
# --description--
@@ -43,3 +40,69 @@ It is the past simple form of `learn`, indicating that Sarah gained new knowledg
### --feedback--
It is the past simple form of `help`, showing that the application of new techniques had a positive effect.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 19.56,
"finishTimestamp": 29.88
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 5.02,
"dialogue": {
"text": "Nice work. I also attended a UX design workshop last month.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.2,
"finishTime": 7.8,
"dialogue": {
"text": "I learned some great techniques for user research.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 7.8,
"finishTime": 11.32,
"dialogue": {
"text": "I've applied them to our project and it helped improve the user experience.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 11.82
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-35
---
<!--
AUDIO REFERENCE:
Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience.
-->
<!-- (Audio) Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience. -->
# --description--
@@ -45,3 +42,69 @@ It refers to methods or ways of doing something, in this case, for conducting us
### --feedback--
It means to make something better, here referring to enhancing the user experience of the project.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 19.56,
"finishTimestamp": 29.88
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 5.02,
"dialogue": {
"text": "Nice work. I also attended a UX design workshop last month.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.2,
"finishTime": 7.8,
"dialogue": {
"text": "I learned some great techniques for user research.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 7.8,
"finishTime": 11.32,
"dialogue": {
"text": "I've applied them to our project and it helped improve the user experience.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 11.82
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-36
---
<!--
AUDIO REFERENCE:
Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience.
-->
<!-- (Audio) Sarah: Nice work! I also attended a UX design workshop last month. I learned some great techniques for user research. I've applied them to our project, and it helped improve the user experience. -->
# --description--
@@ -51,3 +48,69 @@ Sarah's statement revolves around attending a workshop and learning, not about a
## --video-solution--
3
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 19.56,
"finishTimestamp": 29.88
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 5.02,
"dialogue": {
"text": "Nice work. I also attended a UX design workshop last month.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 5.2,
"finishTime": 7.8,
"dialogue": {
"text": "I learned some great techniques for user research.",
"align": "center"
}
},
{
"character": "Sarah",
"startTime": 7.8,
"finishTime": 11.32,
"dialogue": {
"text": "I've applied them to our project and it helped improve the user experience.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 11.82
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-37
---
<!--
AUDIO REFERENCE:
Brian: That's impressive. I met with the client yesterday, and they loved our progress. They gave us the green light to move on to the next phase.
-->
<!-- (Audio) Brian: That's impressive. I met with the client yesterday, and they loved our progress. They gave us the green light to move on to the next phase. -->
# --description--
@@ -61,3 +58,60 @@ It is the past tense of `give`. In this context, it refers to the client giving
### --feedback--
It indicates progressing or advancing to the next stage or phase of a project.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 30.08,
"finishTimestamp": 36.62
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 4.96,
"dialogue": {
"text": "That's impressive. I met with the client yesterday and they loved our progress.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 5.18,
"finishTime": 7.54,
"dialogue": {
"text": "They gave us the green light to move on to the next phase.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 8.04
}
]
}
```

View File

@@ -5,14 +5,11 @@ challengeType: 19
dashedName: task-38
---
<!--
AUDIO REFERENCE:
Brian: That's impressive. I met with the client yesterday, and they loved our progress. They gave us the green light to move on to the next phase.
-->
<!-- (Audio) Brian: That's impressive. I met with the client yesterday, and they loved our progress. They gave us the green light to move on to the next phase. -->
# --description--
This task tests your understanding of Brian's activities on the previous day. Comprehending recent events and their outcomes is important in professional settings, as they can influence project direction and team morale.
Listen to the audio and answer the question.
# --question--
@@ -51,3 +48,60 @@ Fixing technical issues isn't mentioned; the focus was on a client meeting where
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": {
"x": 50,
"y": 15,
"z": 1.2
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 30.08,
"finishTimestamp": 36.62
}
},
"commands": [
{
"character": "Brian",
"opacity": 1,
"startTime": 0
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 4.96,
"dialogue": {
"text": "That's impressive. I met with the client yesterday and they loved our progress.",
"align": "center"
}
},
{
"character": "Brian",
"startTime": 5.18,
"finishTime": 7.54,
"dialogue": {
"text": "They gave us the green light to move on to the next phase.",
"align": "center"
}
},
{
"character": "Brian",
"opacity": 0,
"startTime": 8.04
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 22
dashedName: task-39
---
<!--
AUDIO REFERENCE:
Sarah: Way to go! It looks like were making great progress.
-->
<!-- (Audio) Sarah: Way to go! It looks like we're making great progress. -->
# --description--
@@ -37,3 +34,51 @@ It is used here as part of an expression of congratulations or approval for good
### --feedback--
It is a contraction of `we are`, indicating the ongoing action of making progress by the team.
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Sarah",
"position": {
"x": 50,
"y": 0,
"z": 1.4
},
"opacity": 0
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1,
"startTimestamp": 37.08,
"finishTimestamp": 39.62
}
},
"commands": [
{
"character": "Sarah",
"opacity": 1,
"startTime": 0
},
{
"character": "Sarah",
"startTime": 1,
"finishTime": 3.54,
"dialogue": {
"text": "Way to go. It looks like we're making great progress.",
"align": "center"
}
},
{
"character": "Sarah",
"opacity": 0,
"startTime": 4.04
}
]
}
```

View File

@@ -5,10 +5,7 @@ challengeType: 19
dashedName: task-40
---
<!--
AUDIO REFERENCE:
Entire dialogue
-->
<!-- (Audio) The whole dialogue -->
# --description--
@@ -51,3 +48,158 @@ Their conversation was positive, discussing their achievements and progress.
## --video-solution--
1
# --scene--
```json
{
"setup": {
"background": "cafe.png",
"characters": [
{
"character": "Brian",
"position": { "x": -25, "y": 0, "z": 1 }
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 }
}
],
"audio": {
"filename": "8.1-3.mp3",
"startTime": 1
},
"alwaysShowDialogue": true
},
"commands": [
{
"character": "Brian",
"position": { "x": 25, "y": 0, "z": 1 },
"startTime": 0
},
{
"character": "Sarah",
"position": { "x": 70, "y": 0, "z": 1 },
"startTime": 0.5
},
{
"character": "Brian",
"startTime": 1,
"finishTime": 4.46,
"dialogue": {
"text": "Hey, Sarah, it's been a while since we hung out like this.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 4.78,
"finishTime": 8.66,
"dialogue": {
"text": "Hey, work has kept me busy this week. I worked on the new app interface,",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 8.94,
"finishTime": 12.12,
"dialogue": {
"text": "designed some cool icons, and presented the layout to the team yesterday.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 12.68,
"finishTime": 15.16,
"dialogue": {
"text": "That sounds awesome. I tested the app for bugs.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 15.5,
"finishTime": 18.12,
"dialogue": {
"text": "We found a few, but the good news is we fixed them all.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 18.4,
"finishTime": 19.86,
"dialogue": {
"text": "It seems pretty solid now.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 20.76,
"finishTime": 24.58,
"dialogue": {
"text": "Nice work. I also attended a UX design workshop last month.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 24.76,
"finishTime": 27.36,
"dialogue": {
"text": "I learned some great techniques for user research.",
"align": "right"
}
},
{
"character": "Sarah",
"startTime": 27.36,
"finishTime": 30.88,
"dialogue": {
"text": "I've applied them to our project and it helped improve the user experience.",
"align": "right"
}
},
{
"character": "Brian",
"startTime": 31.28,
"finishTime": 35.04,
"dialogue": {
"text": "That's impressive. I met with the client yesterday and they loved our progress.",
"align": "left"
}
},
{
"character": "Brian",
"startTime": 35.26,
"finishTime": 37.62,
"dialogue": {
"text": "They gave us the green light to move on to the next phase.",
"align": "left"
}
},
{
"character": "Sarah",
"startTime": 38.28,
"finishTime": 40.62,
"dialogue": {
"text": "Way to go. It looks like we're making great progress.",
"align": "right"
}
},
{
"character": "Sarah",
"position": { "x": 125, "y": 0, "z": 1 },
"startTime": 41.12
},
{
"character": "Brian",
"position": { "x": -25, "y": 0, "z": 1 },
"startTime": 41.62
}
]
}
```