feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

120
Skills/@be/node_modules/jibo-anim-db-animations/AR-test generated vendored Normal file
View File

@@ -0,0 +1,120 @@
//"I..." rule
<anim cat='glances' filter='down, eye-only' layers='screen'>I</anim> am jibo.
//"I don't think..."
<anim cat='thinking'>I don't think</anim> so.
//"I wonder..."
<anim cat='thinking'>I wonder.</anim>
//"I guess..."
<anim cat='glances' filter='side'>I guess</anim>
//"In fact,..."
<anim cat='thinking' filter='up, side'>In fact,</anim>
<anim name='dilation' layers='screen'>In fact,</anim>
//"To be honest,..."
<anim cat='thinking'>To be honest,</anim>
<anim name='Eye_Closed_01' layers='screen'>To be honest,</anim>
<anim name='Glance_Up_04'>I wonder if the moon is really made out of cheese.<break size='1'/></anim>
Oh. <break size='1.0'/> <anim cat='glances' filter='side'>I guess</anim> I'm glad I don't have a nose.
** Chosen Transition
<anim name='eye-transition-fade-02' nonBlocking='true'/>Whale
//BLINKS
Blink to emoji 00 <break size='1'/>
<anim name='eye-transition-blink-00' nonBlocking='true'/>Emoji
<break size='1'/>
Blink to emoji 02 <break size='1'/>
<anim name='eye-transition-blink-02' nonBlocking='true'/>Emoji
<break size='1'/>
//FADES
Fade to emoji 00 <break size='1'/>
<anim name='eye-transition-fade-00' nonBlocking='true'/>Emoji
<break size='1'/>
Fade to emoji 02 <break size='1'/>
A really big animal is a <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale. <break size='1'/> <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>Whales are really cool because they eat krill.
//EXAMPLES
<anim cat='glances' filter='down, eye-only' layers='screen'>I</anim> hope the whole family gets to<anim name='eye-transition-fade-02-travel' nonBlocking='true'/> travel to the big, bright <anim name='Glance_Up_03' nonBlocking='true'/>moon someday. And that includes the <anim name='eye-transition-fade-02-dog' nonBlocking='true'/>dog and maybe even the big white <anim name='eye-transition-fade-02-sheep' nonBlocking='true'/>sheep.
My favourite <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale is a humpback <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale.
My favourite animal is a <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale.
<anim name='Sorry_02' nonBlocking='true'/>Sorry about that. <anim cat='glances' filter='side'>Sometimes</anim> I dream that my head is on backwards.
I sleep at night usually, and <anim cat='glances' filter='side'>sometimes</anim> I snooze during the day. You can also just put me to sleep whenever you want by saying, <break size='.5'/><anim cat='quote'>Hey Jibo, go to sleep. <break size='.5'/></anim>
---------------------------------------------------------------------
My favourite animals are a <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale,
<break size='1'/><anim name='eye-transition-fade-02-sheep' nonBlocking='true'/>sheep
<break size='1'/>and a <anim name='eye-transition-fade-02-dog' nonBlocking='true'/>dog.
My favourite animals are a <anim name='eye-transition-fade-02-whale' nonBlocking='true'/>whale,
<anim name='eye-transition-fade-02-sheep' nonBlocking='true'/>sheep
and a <anim name='eye-transition-fade-02-dog' nonBlocking='true'/>dog.
---------------------------------------------------------------------
//RISE and FALLS
Fall and sit 01 <break size='1'/>
<anim name='eye-transition-fall-n-sit-01' nonBlocking='true'/>Emoji
<break size='1'/>
Rise and sit 01 <break size='1'/>
<anim name='eye-transition-rise-n-sit-01' nonBlocking='true'/>Emoji
<break size='1'/>
went to the market and bought
<anim name='Body_Lean_Left_01' layers='body'>eggs,</anim>
<anim name='Body_Lean_Right_01' layers='body'>milk,</anim>
<anim name='Body_Lean_Left_01' layers='body'>bread,</anim>
cheese and olives.
<anim cat='glances' filter='down, eye-only' layers='screen'>I</anim>
went to the market and bought eggs, milk, bread,<anim cat='shift' nonBlocking='true' layers='body'/> cheese and olives.

View File

@@ -0,0 +1,50 @@
### Overview
This repo holds all of the animations to be used for Animation DB, used for embodied speech. It also is a skill
that can be used to test .keys files as they are developed. For the sake of brevity we refer to this repo as the "ADA".
### Installation
These steps will create an ADA repo in your current directory:
```
$ git clone https://github.jibo.com/CharacterAI/jibo-anim-db-animations
$ cd jibo-anim-db-animations
$ yarn i
```
### Editing animations within the ADA
You can use the Jibo SDK to edit animations within the ADA just as you would any other skill's animations. However, since animations within the ADA
often reference other animations in the ADA by name, the ADA must be linked in as a dependency of itself.
If you plan to edit animations within the ADA, perform this step after you have completed the clone step above:
```
$ yarn link
$ yarn link jibo-anim-db-animations
```
### Linking the ADA into the SDK Monorepo:
Often when developing a skill (in the SDK Monorepo) you need assets from a specific branch of the ADA for testing. You can accomplish this by linking
that branch of the ADA into the SDK Monorepo.
From the directory that you cloned `jibo-anim-db-animations`:
```
$ cd ~/path/to/jibo-anim-db-animations
$ git checkout your-branch
$ yarn link
```
then, in your SDK Monorepo:
```
$ cd ~/path/to/sdk
$ yarn link jibo-anim-db-animations
```
**IMPORTANT**: _DO NOT_ link `jibo-anim-db-animations` into any other directory (e.g your skill, or `skills/be`).
From there, `bootstrap`/`build`/`sync` the SDK Monorepo as you normally do.
# Additional Scripts
1. Get a list of each unique anim db category and meta entry and which .keys file it was found in:
1. Run node scripts/categories-meta.js to see the results.
1. TIP: The output can be quite long and will get cut off by the terminal, alternatively: run node scripts/categories-meta.js > info.txt and then open info.txt.

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "c385f9faf3ed4d483a586494c0747f845acfd503"
},
"content": {
"name": "ds_bargein_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.23333333333333334,
"times": [
0,
0.2
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.23333333333333334,
"times": [
0,
0.2
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.23333333333333334,
"times": [
0,
0.2
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_bargein_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_bargein_01.m4a",
"type": "sound",
"src": "device/ds_bargein_01.m4a"
},
{
"type": "metadata",
"animdb": "c385f9faf3ed4d483a586494c0747f845acfd503"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 7,
"scale": 1,
"layers": [
{
"id": "5feae0d5281b3567597bb91402c7555b",
"name": "Audio Event ds_bargein_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_bargein_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "5feae0d5281b3567597bb91402c7555b-body",
"name": "Body ds_bargein_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_bargein_01",
"categories": "device",
"meta": "audio-only, sfx-only, device, device-only, bargein, barge-in"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "38df24306d0edf7077e3382c7c0205d278f2d746"
},
"content": {
"name": "ds_bargein_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_bargein_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_bargein_02.m4a",
"type": "sound",
"src": "device/ds_bargein_02.m4a"
},
{
"type": "metadata",
"animdb": "38df24306d0edf7077e3382c7c0205d278f2d746"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 16,
"scale": 1,
"layers": [
{
"id": "47d14a92d888fb9c3993a9eb2ae12829",
"name": "Audio Event ds_bargein_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_bargein_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "47d14a92d888fb9c3993a9eb2ae12829-body",
"name": "Body ds_bargein_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_bargein_02",
"categories": "device",
"meta": "audio-only, sfx-only, device, device-only, bargein, barge-in"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "66b973a1b4c89833533e1c5ff5eb884defbd4c5f"
},
"content": {
"name": "ds_bloop_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.16666666666666666,
"times": [
0,
0.13333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.16666666666666666,
"times": [
0,
0.13333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.16666666666666666,
"times": [
0,
0.13333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_bloop_01.mp3"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_bloop_01.mp3",
"type": "sound",
"src": "device/ds_bloop_01.mp3"
},
{
"type": "metadata",
"animdb": "66b973a1b4c89833533e1c5ff5eb884defbd4c5f"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 5,
"scale": 1,
"layers": [
{
"id": "d74538f2805c12a839fbdbe1690878b8",
"name": "Audio Event ds_bloop_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_bloop_01.mp3"
}
},
"time": 0
}
]
},
{
"id": "d74538f2805c12a839fbdbe1690878b8-body",
"name": "Body ds_bloop_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_bloop_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "3cd11a30536a2652e648311fc7c79206914f4ef7"
},
"content": {
"name": "ds_dismissal_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.7666666666666667,
"times": [
0,
0.7333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.7666666666666667,
"times": [
0,
0.7333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.7666666666666667,
"times": [
0,
0.7333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_dismissal_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_dismissal_01.m4a",
"type": "sound",
"src": "device/ds_dismissal_01.m4a"
},
{
"type": "metadata",
"animdb": "3cd11a30536a2652e648311fc7c79206914f4ef7"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 23,
"scale": 1,
"layers": [
{
"id": "a3eaed1612197ba35bd16cdb36f9865b",
"name": "Audio Event ds_dismissal_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_dismissal_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "a3eaed1612197ba35bd16cdb36f9865b-body",
"name": "Body ds_dismissal_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_dismissal_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "e566ec5b69948e2d8fb8fdbafd78d5c3dbda6e6b"
},
"content": {
"name": "ds_nomatch_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_nomatch_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_nomatch_01.m4a",
"type": "sound",
"src": "device/ds_nomatch_01.m4a"
},
{
"type": "metadata",
"animdb": "e566ec5b69948e2d8fb8fdbafd78d5c3dbda6e6b"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 25,
"scale": 1,
"layers": [
{
"id": "f511899ed6d790efbdf319d067e88b0e",
"name": "Audio Event ds_nomatch_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_nomatch_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "f511899ed6d790efbdf319d067e88b0e-body",
"name": "Body ds_nomatch_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_nomatch_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "c2089ee82d63aedd7592c74d2dbd4b33e55e6050"
},
"content": {
"name": "ds_nomatch_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_nomatch_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_nomatch_02.m4a",
"type": "sound",
"src": "device/ds_nomatch_02.m4a"
},
{
"type": "metadata",
"animdb": "c2089ee82d63aedd7592c74d2dbd4b33e55e6050"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.15.0",
"framerate": 30,
"duration": 29,
"scale": 1,
"layers": [
{
"id": "40e4b2fc5308935de0f50de0d3563e89",
"name": "Audio Event ds_nomatch_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_nomatch_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "40e4b2fc5308935de0f50de0d3563e89-body",
"name": "Body ds_nomatch_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_nomatch_02",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "79b228ff1bf907c0e4d6f6ec1713ccbd3ec70e77"
},
"content": {
"name": "ds_processing_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 2.7333333333333334,
"times": [
0,
2.7
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 2.7333333333333334,
"times": [
0,
2.7
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 2.7333333333333334,
"times": [
0,
2.7
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_processing_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_processing_01.m4a",
"type": "sound",
"src": "device/ds_processing_01.m4a"
},
{
"type": "metadata",
"animdb": "79b228ff1bf907c0e4d6f6ec1713ccbd3ec70e77"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 82,
"scale": 1,
"layers": [
{
"id": "9f9c2a394231228a9af64bf03f135418",
"name": "Audio Event ds_processing_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_processing_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "9f9c2a394231228a9af64bf03f135418-body",
"name": "Body ds_processing_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_processing_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "d7b1a9947b61d343e38c7b0cde7d02de18aa01cc"
},
"content": {
"name": "ds_processing_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_processing_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_processing_02.m4a",
"type": "sound",
"src": "device/ds_processing_02.m4a"
},
{
"type": "metadata",
"animdb": "d7b1a9947b61d343e38c7b0cde7d02de18aa01cc"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 84,
"scale": 1,
"layers": [
{
"id": "e3c52322b40d41c2e288b0970c81101b",
"name": "Audio Event ds_processing_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_processing_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "e3c52322b40d41c2e288b0970c81101b-body",
"name": "Body ds_processing_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_processing_02",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "4df3f64c609d0210409a264c24ff4e3bea5915f7"
},
"content": {
"name": "ds_processing_03.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 2.8666666666666667,
"times": [
0,
2.8333333333333335
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 2.8666666666666667,
"times": [
0,
2.8333333333333335
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 2.8666666666666667,
"times": [
0,
2.8333333333333335
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_processing_03.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_processing_03.m4a",
"type": "sound",
"src": "device/ds_processing_03.m4a"
},
{
"type": "metadata",
"animdb": "4df3f64c609d0210409a264c24ff4e3bea5915f7"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 86,
"scale": 1,
"layers": [
{
"id": "50b5b92eb863ba6a8ae3e7c4e16bd9d0",
"name": "Audio Event ds_processing_03",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_processing_03.m4a"
}
},
"time": 0
}
]
},
{
"id": "50b5b92eb863ba6a8ae3e7c4e16bd9d0-body",
"name": "Body ds_processing_03",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_processing_03",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "bd769068bd8c55b925f04fc6172f66e607132d63"
},
"content": {
"name": "ds_processing_04.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 2.8,
"times": [
0,
2.7666666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_processing_04.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_processing_04.m4a",
"type": "sound",
"src": "device/ds_processing_04.m4a"
},
{
"type": "metadata",
"animdb": "bd769068bd8c55b925f04fc6172f66e607132d63"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 84,
"scale": 1,
"layers": [
{
"id": "3595f5fbb04f8e2d4e52b0b48d38ba3a",
"name": "Audio Event ds_processing_04",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_processing_04.m4a"
}
},
"time": 0
}
]
},
{
"id": "3595f5fbb04f8e2d4e52b0b48d38ba3a-body",
"name": "Body ds_processing_04",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_processing_04",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "e9efe738db4e0ed4bd5cc9c1eff73b30ad577c3c"
},
"content": {
"name": "ds_processing_05.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.1,
"times": [
0,
1.0666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.1,
"times": [
0,
1.0666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.1,
"times": [
0,
1.0666666666666667
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_processing_05.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_processing_05.m4a",
"type": "sound",
"src": "device/ds_processing_05.m4a"
},
{
"type": "metadata",
"animdb": "e9efe738db4e0ed4bd5cc9c1eff73b30ad577c3c"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 33,
"scale": 1,
"layers": [
{
"id": "51a48a4015c3ebe96318e7f670e6dc82",
"name": "Audio Event ds_processing_05",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_processing_05.m4a"
}
},
"time": 0
}
]
},
{
"id": "51a48a4015c3ebe96318e7f670e6dc82-body",
"name": "Body ds_processing_05",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_processing_05",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "74da796255a85bdf46cda7fc87c846140150788b"
},
"content": {
"name": "ds_shutdown_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.0333333333333334,
"times": [
0,
1
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.0333333333333334,
"times": [
0,
1
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.0333333333333334,
"times": [
0,
1
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_shutdown_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_shutdown_01.m4a",
"type": "sound",
"src": "device/ds_shutdown_01.m4a"
},
{
"type": "metadata",
"animdb": "74da796255a85bdf46cda7fc87c846140150788b"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 31,
"scale": 1,
"layers": [
{
"id": "6abd307ea86ceeb2915eca9f5f0061e1",
"name": "Audio Event ds_shutdown_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_shutdown_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "6abd307ea86ceeb2915eca9f5f0061e1-body",
"name": "Body ds_shutdown_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_shutdown_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "0adc0c8dc524efb5c3a912dc8d2e2f3d7b87bb40"
},
"content": {
"name": "ds_shutter_release_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.4666666666666667,
"times": [
0,
0.43333333333333335
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.4666666666666667,
"times": [
0,
0.43333333333333335
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.4666666666666667,
"times": [
0,
0.43333333333333335
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_shutter_release_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_shutter_release_01.m4a",
"type": "sound",
"src": "device/ds_shutter_release_01.m4a"
},
{
"type": "metadata",
"animdb": "0adc0c8dc524efb5c3a912dc8d2e2f3d7b87bb40"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 14,
"scale": 1,
"layers": [
{
"id": "544d46fa25c4d5463aa45318b63b9898",
"name": "Audio Event ds_shutter_release_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_shutter_release_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "544d46fa25c4d5463aa45318b63b9898-body",
"name": "Body ds_shutter_release_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_shutter_release_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "2d380049efde60ecbf68210bae6c15cdd14de031"
},
"content": {
"name": "ds_speakbegin_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_speakbegin_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_speakbegin_01.m4a",
"type": "sound",
"src": "device/ds_speakbegin_01.m4a"
},
{
"type": "metadata",
"animdb": "2d380049efde60ecbf68210bae6c15cdd14de031"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 9,
"scale": 1,
"layers": [
{
"id": "fec03ebfd0e64d92bf75ed39e83d83ed",
"name": "Audio Event ds_speakbegin_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_speakbegin_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "fec03ebfd0e64d92bf75ed39e83d83ed-body",
"name": "Body ds_speakbegin_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_speakbegin_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "b21450dd81139a5f25a7b97836310365baa018c7"
},
"content": {
"name": "ds_speakend_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.3,
"times": [
0,
0.26666666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/ds_speakend_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/ds_speakend_01.m4a",
"type": "sound",
"src": "device/ds_speakend_01.m4a"
},
{
"type": "metadata",
"animdb": "b21450dd81139a5f25a7b97836310365baa018c7"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 9,
"scale": 1,
"layers": [
{
"id": "3491d80dd5fd4e6d9708ccf82f69c380",
"name": "Audio Event ds_speakend_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/ds_speakend_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "3491d80dd5fd4e6d9708ccf82f69c380-body",
"name": "Body ds_speakend_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ds_speakend_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "8d8f8bf8768c8ca78db7eef5a8a0d122a12a0672"
},
"content": {
"name": "sfx_device_proactive_greeting_alert_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.43333333333333335,
"times": [
0,
0.4
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.43333333333333335,
"times": [
0,
0.4
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.43333333333333335,
"times": [
0,
0.4
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "device/sfx_device_proactive_greeting_alert_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "device/sfx_device_proactive_greeting_alert_01.m4a",
"type": "sound",
"src": "device/sfx_device_proactive_greeting_alert_01.m4a"
},
{
"type": "metadata",
"animdb": "8d8f8bf8768c8ca78db7eef5a8a0d122a12a0672"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 13,
"scale": 1,
"layers": [
{
"id": "511b4ae9fb7c526625507564157dcb5c",
"name": "Audio Event sfx_device_proactive_greeting_alert_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "device/sfx_device_proactive_greeting_alert_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "511b4ae9fb7c526625507564157dcb5c-body",
"name": "Body sfx_device_proactive_greeting_alert_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "sfx_device_proactive_greeting_alert_01",
"categories": "device",
"meta": "audio-only, sfx-only, device"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "4cb6235e6247b318c117261cce74d3488f843286"
},
"content": {
"name": "ei_confusion_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.36666666666666664,
"times": [
0,
0.3333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.36666666666666664,
"times": [
0,
0.3333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.36666666666666664,
"times": [
0,
0.3333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/ei_confusion_01.mp3"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/ei_confusion_01.mp3",
"type": "sound",
"src": "emotional_intent/ei_confusion_01.mp3"
},
{
"type": "metadata",
"animdb": "4cb6235e6247b318c117261cce74d3488f843286"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 11,
"scale": 1,
"layers": [
{
"id": "dc41f382ec1cbf4021fce0c9c8f6e26e",
"name": "Audio Event ei_confusion_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/ei_confusion_01.mp3"
}
},
"time": 0
}
]
},
{
"id": "dc41f382ec1cbf4021fce0c9c8f6e26e-body",
"name": "Body ei_confusion_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_confusion_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "ae98edd5baf17792bd5220e95146478e72296808"
},
"content": {
"name": "ei_um_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.5333333333333333,
"times": [
0,
0.5
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/ei_um_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/ei_um_01.m4a",
"type": "sound",
"src": "emotional_intent/ei_um_01.m4a"
},
{
"type": "metadata",
"animdb": "ae98edd5baf17792bd5220e95146478e72296808"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 16,
"scale": 1,
"layers": [
{
"id": "9eb7f99215d1f838f93371ce2a34bad8",
"name": "Audio Event ei_um_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/ei_um_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "9eb7f99215d1f838f93371ce2a34bad8-body",
"name": "Body ei_um_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_um_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent, um"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "423d30415da554a6bed86bc017cf9a3a1684407f"
},
"content": {
"name": "ei_whistle_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.8,
"times": [
0,
1.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.8,
"times": [
0,
1.7666666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.8,
"times": [
0,
1.7666666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/ei_whistle_01.mp3"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/ei_whistle_01.mp3",
"type": "sound",
"src": "emotional_intent/ei_whistle_01.mp3"
},
{
"type": "metadata",
"animdb": "423d30415da554a6bed86bc017cf9a3a1684407f"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 54,
"scale": 1,
"layers": [
{
"id": "7e8442bcd99c4492015677b6f2f60b25",
"name": "Audio Event ei_whistle_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/ei_whistle_01.mp3"
}
},
"time": 0
}
]
},
{
"id": "7e8442bcd99c4492015677b6f2f60b25-body",
"name": "Body ei_whistle_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_whistle_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "71012371a52a7536bdea0acf661ab70e93e5cc73"
},
"content": {
"name": "ei_goodbye_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.9,
"times": [
0,
0.8666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.9,
"times": [
0,
0.8666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.9,
"times": [
0,
0.8666666666666667
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/goodbye/ei_goodbye_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/goodbye/ei_goodbye_01.m4a",
"type": "sound",
"src": "emotional_intent/goodbye/ei_goodbye_01.m4a"
},
{
"type": "metadata",
"animdb": "71012371a52a7536bdea0acf661ab70e93e5cc73"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 27,
"scale": 1,
"layers": [
{
"id": "904e8834db128c72844550172548158a",
"name": "Audio Event ei_goodbye_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/goodbye/ei_goodbye_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "904e8834db128c72844550172548158a-body",
"name": "Body ei_goodbye_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_goodbye_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "488ddcbd392e286edf6f84841155c46b61ef703b"
},
"content": {
"name": "ei_goodbye_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/goodbye/ei_goodbye_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/goodbye/ei_goodbye_02.m4a",
"type": "sound",
"src": "emotional_intent/goodbye/ei_goodbye_02.m4a"
},
{
"type": "metadata",
"animdb": "488ddcbd392e286edf6f84841155c46b61ef703b"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 29,
"scale": 1,
"layers": [
{
"id": "615fa3cffaa4878d68c3c2a16eeffcad",
"name": "Audio Event ei_goodbye_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/goodbye/ei_goodbye_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "615fa3cffaa4878d68c3c2a16eeffcad-body",
"name": "Body ei_goodbye_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_goodbye_02",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "fc5f2a110231539f3317481f8c2781884e4686cb"
},
"content": {
"name": "ei_goodbye_03.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.6,
"times": [
0,
0.5666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.6,
"times": [
0,
0.5666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.6,
"times": [
0,
0.5666666666666667
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/goodbye/ei_goodbye_03.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/goodbye/ei_goodbye_03.m4a",
"type": "sound",
"src": "emotional_intent/goodbye/ei_goodbye_03.m4a"
},
{
"type": "metadata",
"animdb": "fc5f2a110231539f3317481f8c2781884e4686cb"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 18,
"scale": 1,
"layers": [
{
"id": "e2e393c982021a8039d64bd295237758",
"name": "Audio Event ei_goodbye_03",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/goodbye/ei_goodbye_03.m4a"
}
},
"time": 0
}
]
},
{
"id": "e2e393c982021a8039d64bd295237758-body",
"name": "Body ei_goodbye_03",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_goodbye_03",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "31f15aef8600d4c2715e88902a0f801827a565ae"
},
"content": {
"name": "ei_greeting_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.9666666666666667,
"times": [
0,
0.9333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/greetings/ei_greeting_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/greetings/ei_greeting_01.m4a",
"type": "sound",
"src": "emotional_intent/greetings/ei_greeting_01.m4a"
},
{
"type": "metadata",
"animdb": "31f15aef8600d4c2715e88902a0f801827a565ae"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 29,
"scale": 1,
"layers": [
{
"id": "478b8c9c8909c220106a230cdc0db2f9",
"name": "Audio Event ei_greeting_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/greetings/ei_greeting_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "478b8c9c8909c220106a230cdc0db2f9-body",
"name": "Body ei_greeting_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_greeting_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "614b1be299184fb8d6b183676d9578cb52c5db10"
},
"content": {
"name": "ei_greeting_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 0.8333333333333334,
"times": [
0,
0.8
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/greetings/ei_greeting_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/greetings/ei_greeting_02.m4a",
"type": "sound",
"src": "emotional_intent/greetings/ei_greeting_02.m4a"
},
{
"type": "metadata",
"animdb": "614b1be299184fb8d6b183676d9578cb52c5db10"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 25,
"scale": 1,
"layers": [
{
"id": "0bef0fe00442070acb8fa2cc0a11232c",
"name": "Audio Event ei_greeting_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/greetings/ei_greeting_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "0bef0fe00442070acb8fa2cc0a11232c-body",
"name": "Body ei_greeting_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_greeting_02",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "98011eda4dd70f96ac4a3ab38401e79785639481"
},
"content": {
"name": "ei_greeting_03.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.1666666666666667,
"times": [
0,
1.1333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.1666666666666667,
"times": [
0,
1.1333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.1666666666666667,
"times": [
0,
1.1333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/greetings/ei_greeting_03.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/greetings/ei_greeting_03.m4a",
"type": "sound",
"src": "emotional_intent/greetings/ei_greeting_03.m4a"
},
{
"type": "metadata",
"animdb": "98011eda4dd70f96ac4a3ab38401e79785639481"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 35,
"scale": 1,
"layers": [
{
"id": "3e8749ac7ebc57da8de193ad2beee967",
"name": "Audio Event ei_greeting_03",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/greetings/ei_greeting_03.m4a"
}
},
"time": 0
}
]
},
{
"id": "3e8749ac7ebc57da8de193ad2beee967-body",
"name": "Body ei_greeting_03",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_greeting_03",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "96331194efdd108b0f8d6bd6f430134e2dd8de16"
},
"content": {
"name": "ei_murmur_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 3.7666666666666666,
"times": [
0,
3.7333333333333334
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 3.7666666666666666,
"times": [
0,
3.7333333333333334
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 3.7666666666666666,
"times": [
0,
3.7333333333333334
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_murmur_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_murmur_01.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_murmur_01.m4a"
},
{
"type": "metadata",
"animdb": "96331194efdd108b0f8d6bd6f430134e2dd8de16"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 113,
"scale": 1,
"layers": [
{
"id": "a923d66bbb420158ce1a4c0e54d39a8d",
"name": "Audio Event ei_murmur_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_murmur_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "a923d66bbb420158ce1a4c0e54d39a8d-body",
"name": "Body ei_murmur_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_murmur_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "e4556d0ad6206f19a250b097738113d698cc73fc"
},
"content": {
"name": "ei_murmur_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 3.1666666666666665,
"times": [
0,
3.1333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 3.1666666666666665,
"times": [
0,
3.1333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 3.1666666666666665,
"times": [
0,
3.1333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_murmur_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_murmur_02.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_murmur_02.m4a"
},
{
"type": "metadata",
"animdb": "e4556d0ad6206f19a250b097738113d698cc73fc"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 95,
"scale": 1,
"layers": [
{
"id": "0925159144a57a3437df6c8962512d4c",
"name": "Audio Event ei_murmur_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_murmur_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "0925159144a57a3437df6c8962512d4c-body",
"name": "Body ei_murmur_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_murmur_02",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "06af3d2927229524c89e778ee9415437a7ee968b"
},
"content": {
"name": "ei_murmur_03.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 3.933333333333333,
"times": [
0,
3.9
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 3.933333333333333,
"times": [
0,
3.9
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 3.933333333333333,
"times": [
0,
3.9
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_murmur_03.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_murmur_03.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_murmur_03.m4a"
},
{
"type": "metadata",
"animdb": "06af3d2927229524c89e778ee9415437a7ee968b"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 118,
"scale": 1,
"layers": [
{
"id": "0ec0c4550dcf90677f95896fcb44a4d1",
"name": "Audio Event ei_murmur_03",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_murmur_03.m4a"
}
},
"time": 0
}
]
},
{
"id": "0ec0c4550dcf90677f95896fcb44a4d1-body",
"name": "Body ei_murmur_03",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_murmur_03",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "f8b0238e41e19fe0d31a80aea3f4ba91bfa08ef3"
},
"content": {
"name": "ei_murmur_04.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 4.366666666666666,
"times": [
0,
4.333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 4.366666666666666,
"times": [
0,
4.333333333333333
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 4.366666666666666,
"times": [
0,
4.333333333333333
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_murmur_04.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_murmur_04.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_murmur_04.m4a"
},
{
"type": "metadata",
"animdb": "f8b0238e41e19fe0d31a80aea3f4ba91bfa08ef3"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 131,
"scale": 1,
"layers": [
{
"id": "37f0180e41909e4df02736998c36a864",
"name": "Audio Event ei_murmur_04",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_murmur_04.m4a"
}
},
"time": 0
}
]
},
{
"id": "37f0180e41909e4df02736998c36a864-body",
"name": "Body ei_murmur_04",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_murmur_04",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "085f26aec55de32089a580442c476fabadac2a68"
},
"content": {
"name": "ei_murmur_05.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 4.1,
"times": [
0,
4.066666666666666
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 4.1,
"times": [
0,
4.066666666666666
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 4.1,
"times": [
0,
4.066666666666666
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_murmur_05.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_murmur_05.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_murmur_05.m4a"
},
{
"type": "metadata",
"animdb": "085f26aec55de32089a580442c476fabadac2a68"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 123,
"scale": 1,
"layers": [
{
"id": "fe97b76fa64c55a902d2be747334b0dd",
"name": "Audio Event ei_murmur_05",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_murmur_05.m4a"
}
},
"time": 0
}
]
},
{
"id": "fe97b76fa64c55a902d2be747334b0dd-body",
"name": "Body ei_murmur_05",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_murmur_05",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "15a506f684d741588f720f4fd9dd3d19b1137d2a"
},
"content": {
"name": "ei_mutter_01.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.7,
"times": [
0,
1.6666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.7,
"times": [
0,
1.6666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.7,
"times": [
0,
1.6666666666666667
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_mutter_01.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_mutter_01.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_mutter_01.m4a"
},
{
"type": "metadata",
"animdb": "15a506f684d741588f720f4fd9dd3d19b1137d2a"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 51,
"scale": 1,
"layers": [
{
"id": "1b4da1048220b404fce1bcfeddf28d2d",
"name": "Audio Event ei_mutter_01",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_mutter_01.m4a"
}
},
"time": 0
}
]
},
{
"id": "1b4da1048220b404fce1bcfeddf28d2d-body",
"name": "Body ei_mutter_01",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_mutter_01",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "811ea0fa38c00efa82832425f78d11a75ec8fe10"
},
"content": {
"name": "ei_mutter_02.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.3333333333333333,
"times": [
0,
1.3
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.3333333333333333,
"times": [
0,
1.3
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.3333333333333333,
"times": [
0,
1.3
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_mutter_02.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_mutter_02.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_mutter_02.m4a"
},
{
"type": "metadata",
"animdb": "811ea0fa38c00efa82832425f78d11a75ec8fe10"
}
]

View File

@@ -0,0 +1,38 @@
{
"version": "0.13.0",
"framerate": 30,
"duration": 40,
"scale": 1,
"layers": [
{
"id": "fd6ab509968a79f80149acbae051a66d",
"name": "Audio Event ei_mutter_02",
"type": "Audio Event",
"visible": true,
"locked": false,
"keyframes": [
{
"value": {
"AudioEvent": {
"file": "emotional_intent/mutterings/ei_mutter_02.m4a"
}
},
"time": 0
}
]
},
{
"id": "fd6ab509968a79f80149acbae051a66d-body",
"name": "Body ei_mutter_02",
"type": "Body",
"visible": true,
"locked": false,
"keyframes": []
}
],
"animdb": {
"name": "ei_mutter_02",
"categories": "emotional-intent",
"meta": "audio-only, ssa-only, emotional-intent"
}
}

View File

@@ -0,0 +1,57 @@
{
"header": {
"fileType": "Animation",
"version": "0.15.0",
"animdb": "80e8e087adb44731ae5c5e922db101d1cab4c98a"
},
"content": {
"name": "ei_mutter_03.keys",
"channels": [
{
"dofName": "topSection_r",
"length": 1.9,
"times": [
0,
1.8666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "middleSection_r",
"length": 1.9,
"times": [
0,
1.8666666666666667
],
"values": [
0,
0
]
},
{
"dofName": "bottomSection_r",
"length": 1.9,
"times": [
0,
1.8666666666666667
],
"values": [
0,
0
]
}
],
"events": [
{
"time": 0,
"eventName": "play-audio",
"payload": {
"file": "emotional_intent/mutterings/ei_mutter_03.m4a"
}
}
]
}
}

View File

@@ -0,0 +1,11 @@
[
{
"id": "emotional_intent/mutterings/ei_mutter_03.m4a",
"type": "sound",
"src": "emotional_intent/mutterings/ei_mutter_03.m4a"
},
{
"type": "metadata",
"animdb": "80e8e087adb44731ae5c5e922db101d1cab4c98a"
}
]

Some files were not shown because too many files have changed in this diff Show More