create-aura3d 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +0 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
- package/templates/animation-channel/package.json +1 -1
- package/templates/animation-studio/dist/episodes/scene/episode-3d.webm +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/action.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/dialogue.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/final.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/first.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/mouth-closed.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/frames/mouth-open.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/render-live-summary.json +2086 -6754
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/broken.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/chefs.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/customer.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/worker-1.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/worker-2.png +0 -0
- package/templates/animation-studio/dist/scene/working.document.json +219 -348
- package/templates/animation-studio/package-lock.json +1307 -55
- package/templates/animation-studio/package.json +11 -5
- package/templates/animation-studio/studio/dist/assets/index-i8URxOOt.css +1 -0
- package/templates/animation-studio/studio/dist/assets/index-pC9hdZ-B.js +11 -0
- package/templates/animation-studio/studio/dist/index.html +19 -0
- package/templates/animation-studio/studio/index.html +18 -0
- package/templates/animation-studio/studio/src/App.tsx +430 -0
- package/templates/animation-studio/studio/src/components/Console.tsx +366 -0
- package/templates/animation-studio/studio/src/components/Icon.tsx +90 -0
- package/templates/animation-studio/studio/src/components/Inspector.tsx +209 -0
- package/templates/animation-studio/studio/src/components/Outliner.tsx +210 -0
- package/templates/animation-studio/studio/src/components/Palette.tsx +204 -0
- package/templates/animation-studio/studio/src/components/Stage.tsx +339 -0
- package/templates/animation-studio/studio/src/components/Timeline.tsx +183 -0
- package/templates/animation-studio/studio/src/components/Topbar.tsx +66 -0
- package/templates/animation-studio/studio/src/main.tsx +10 -0
- package/templates/animation-studio/studio/src/state/backend.ts +108 -0
- package/templates/animation-studio/studio/src/state/fidelity.ts +110 -0
- package/templates/animation-studio/studio/src/state/mapDocument.ts +419 -0
- package/templates/animation-studio/studio/src/state/sceneTool.ts +55 -0
- package/templates/animation-studio/studio/src/state/types.ts +165 -0
- package/templates/animation-studio/studio/src/state/util.ts +46 -0
- package/templates/animation-studio/studio/src/styles.css +528 -0
- package/templates/animation-studio/studio/vite.config.ts +175 -0
- package/templates/character-controller/package.json +3 -3
- package/templates/cinematic-scene/package.json +1 -1
- package/templates/episode-builder/package.json +1 -1
- package/templates/fighting-game/package.json +1 -1
- package/templates/mini-game/package.json +1 -1
- package/templates/product-viewer/package.json +1 -1
- package/templates/prompt-animation-channel/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "scene-two-
|
|
2
|
+
"id": "scene-two-chefs-yelling-at-each-other-",
|
|
3
3
|
"duration": 24,
|
|
4
4
|
"assets": {
|
|
5
5
|
"characters": [
|
|
6
6
|
{
|
|
7
|
-
"id": "
|
|
7
|
+
"id": "chefs",
|
|
8
8
|
"url": "/aura-assets/cast-a.catalog.glb",
|
|
9
9
|
"scale": 1.3,
|
|
10
10
|
"defaultClip": "idle",
|
|
@@ -19,27 +19,7 @@
|
|
|
19
19
|
"react"
|
|
20
20
|
],
|
|
21
21
|
"mouthMorphIndex": 0,
|
|
22
|
-
"attribution": "\"
|
|
23
|
-
"license": "CC0",
|
|
24
|
-
"fidelityGrade": "A"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": "worker-2",
|
|
28
|
-
"url": "/aura-assets/cast-b.catalog.glb",
|
|
29
|
-
"scale": 1.3,
|
|
30
|
-
"defaultClip": "idle",
|
|
31
|
-
"availableClips": [
|
|
32
|
-
"idle",
|
|
33
|
-
"talk",
|
|
34
|
-
"gesture",
|
|
35
|
-
"point",
|
|
36
|
-
"nod",
|
|
37
|
-
"walk",
|
|
38
|
-
"run",
|
|
39
|
-
"react"
|
|
40
|
-
],
|
|
41
|
-
"mouthMorphIndex": 0,
|
|
42
|
-
"attribution": "\"worker 2\" — curated A-grade humanoid (humanoid-b)",
|
|
22
|
+
"attribution": "\"chefs\" — curated A-grade humanoid (humanoid-a)",
|
|
43
23
|
"license": "CC0",
|
|
44
24
|
"fidelityGrade": "A"
|
|
45
25
|
}
|
|
@@ -48,102 +28,102 @@
|
|
|
48
28
|
},
|
|
49
29
|
"set": {
|
|
50
30
|
"clearColor": [
|
|
51
|
-
0.
|
|
52
|
-
0.
|
|
53
|
-
0.
|
|
31
|
+
0.09,
|
|
32
|
+
0.085,
|
|
33
|
+
0.08,
|
|
54
34
|
1
|
|
55
35
|
],
|
|
56
|
-
"studioLightingScale": 0.
|
|
36
|
+
"studioLightingScale": 0.58,
|
|
57
37
|
"environment": {
|
|
58
38
|
"color": [
|
|
59
|
-
0.
|
|
60
|
-
0.
|
|
61
|
-
0.
|
|
39
|
+
0.58,
|
|
40
|
+
0.55,
|
|
41
|
+
0.5
|
|
62
42
|
],
|
|
63
|
-
"intensity": 0.
|
|
43
|
+
"intensity": 0.46,
|
|
64
44
|
"proceduralMap": {
|
|
65
45
|
"skyColor": [
|
|
66
|
-
0.
|
|
67
|
-
0.
|
|
68
|
-
0.
|
|
46
|
+
0.24,
|
|
47
|
+
0.22,
|
|
48
|
+
0.2
|
|
69
49
|
],
|
|
70
50
|
"horizonColor": [
|
|
71
|
-
0.
|
|
72
|
-
0.
|
|
73
|
-
0.
|
|
51
|
+
0.3,
|
|
52
|
+
0.28,
|
|
53
|
+
0.25
|
|
74
54
|
],
|
|
75
55
|
"groundColor": [
|
|
76
|
-
0.
|
|
77
|
-
0.
|
|
78
|
-
0.
|
|
56
|
+
0.14,
|
|
57
|
+
0.13,
|
|
58
|
+
0.12
|
|
79
59
|
],
|
|
80
60
|
"specularColor": [
|
|
81
61
|
0.9,
|
|
82
|
-
0.
|
|
83
|
-
0.
|
|
62
|
+
0.86,
|
|
63
|
+
0.78
|
|
84
64
|
],
|
|
85
|
-
"intensity": 0.
|
|
86
|
-
"specularIntensity": 0.
|
|
65
|
+
"intensity": 0.44,
|
|
66
|
+
"specularIntensity": 0.55
|
|
87
67
|
},
|
|
88
68
|
"hdri": {
|
|
89
69
|
"skyColor": [
|
|
90
|
-
0.
|
|
91
|
-
0.
|
|
92
|
-
0.
|
|
70
|
+
0.66,
|
|
71
|
+
0.62,
|
|
72
|
+
0.56
|
|
93
73
|
],
|
|
94
74
|
"horizonColor": [
|
|
95
|
-
0.
|
|
96
|
-
0.
|
|
97
|
-
0.
|
|
75
|
+
0.4,
|
|
76
|
+
0.37,
|
|
77
|
+
0.33
|
|
98
78
|
],
|
|
99
79
|
"groundColor": [
|
|
100
|
-
0.
|
|
101
|
-
0.
|
|
102
|
-
0.
|
|
80
|
+
0.16,
|
|
81
|
+
0.15,
|
|
82
|
+
0.13
|
|
103
83
|
],
|
|
104
84
|
"sun": {
|
|
105
85
|
"color": [
|
|
106
|
-
|
|
107
|
-
0.
|
|
108
|
-
|
|
86
|
+
1,
|
|
87
|
+
0.93,
|
|
88
|
+
0.8
|
|
109
89
|
],
|
|
110
|
-
"intensity": 1.
|
|
111
|
-
"azimuth": 0.5,
|
|
112
|
-
"elevation": 1
|
|
90
|
+
"intensity": 1.7,
|
|
91
|
+
"azimuth": -0.5,
|
|
92
|
+
"elevation": 1,
|
|
113
93
|
"angularRadius": 0.2
|
|
114
94
|
},
|
|
115
95
|
"intensity": 0.6,
|
|
116
|
-
"specularIntensity": 0.
|
|
96
|
+
"specularIntensity": 0.6
|
|
117
97
|
}
|
|
118
98
|
},
|
|
119
99
|
"pieces": [
|
|
120
100
|
{
|
|
121
|
-
"id": "
|
|
101
|
+
"id": "kitchen-cyc-wall",
|
|
122
102
|
"geometry": "sphere",
|
|
123
103
|
"position": [
|
|
124
104
|
0,
|
|
125
|
-
|
|
126
|
-
-
|
|
105
|
+
6,
|
|
106
|
+
-22
|
|
127
107
|
],
|
|
128
108
|
"scale": [
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
109
|
+
56,
|
|
110
|
+
32,
|
|
111
|
+
8
|
|
132
112
|
],
|
|
133
113
|
"baseColor": [
|
|
134
|
-
0.
|
|
135
|
-
0.
|
|
136
|
-
0.
|
|
114
|
+
0.36,
|
|
115
|
+
0.34,
|
|
116
|
+
0.32,
|
|
137
117
|
1
|
|
138
118
|
],
|
|
139
119
|
"metallic": 0.05,
|
|
140
|
-
"roughness": 0.
|
|
120
|
+
"roughness": 0.85,
|
|
141
121
|
"emissiveColor": [
|
|
142
|
-
0.
|
|
143
|
-
0.
|
|
144
|
-
0.
|
|
122
|
+
0.22,
|
|
123
|
+
0.21,
|
|
124
|
+
0.2
|
|
145
125
|
],
|
|
146
|
-
"emissiveStrength": 0.
|
|
126
|
+
"emissiveStrength": 0.44
|
|
147
127
|
},
|
|
148
128
|
{
|
|
149
129
|
"id": "ground-base",
|
|
@@ -159,17 +139,17 @@
|
|
|
159
139
|
120
|
|
160
140
|
],
|
|
161
141
|
"baseColor": [
|
|
162
|
-
0.26,
|
|
163
|
-
0.27,
|
|
164
142
|
0.3,
|
|
143
|
+
0.28,
|
|
144
|
+
0.26,
|
|
165
145
|
1
|
|
166
146
|
],
|
|
167
|
-
"metallic": 0.
|
|
168
|
-
"roughness": 0.
|
|
147
|
+
"metallic": 0.05,
|
|
148
|
+
"roughness": 0.7,
|
|
169
149
|
"emissiveColor": [
|
|
170
|
-
0.
|
|
171
|
-
0.
|
|
172
|
-
0.
|
|
150
|
+
0.03,
|
|
151
|
+
0.028000000000000004,
|
|
152
|
+
0.026000000000000002
|
|
173
153
|
],
|
|
174
154
|
"emissiveStrength": 0.05,
|
|
175
155
|
"includeInAutoFrame": true
|
|
@@ -188,267 +168,217 @@
|
|
|
188
168
|
6
|
|
189
169
|
],
|
|
190
170
|
"baseColor": [
|
|
191
|
-
0.
|
|
171
|
+
0.22,
|
|
192
172
|
0.21,
|
|
193
|
-
0.
|
|
194
|
-
1
|
|
195
|
-
],
|
|
196
|
-
"metallic": 0.1,
|
|
197
|
-
"roughness": 0.65
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"id": "office-desk-top",
|
|
201
|
-
"geometry": "cube",
|
|
202
|
-
"position": [
|
|
203
|
-
-2.4,
|
|
204
|
-
0.78,
|
|
205
|
-
-2
|
|
206
|
-
],
|
|
207
|
-
"scale": [
|
|
208
|
-
2.6,
|
|
209
|
-
0.12,
|
|
210
|
-
1.1
|
|
211
|
-
],
|
|
212
|
-
"baseColor": [
|
|
213
|
-
0.72,
|
|
214
|
-
0.72,
|
|
215
|
-
0.74,
|
|
173
|
+
0.2,
|
|
216
174
|
1
|
|
217
175
|
],
|
|
218
176
|
"metallic": 0.05,
|
|
219
|
-
"roughness": 0.
|
|
177
|
+
"roughness": 0.75
|
|
220
178
|
},
|
|
221
179
|
{
|
|
222
|
-
"id": "
|
|
180
|
+
"id": "kitchen-counter",
|
|
223
181
|
"geometry": "cube",
|
|
224
182
|
"position": [
|
|
225
|
-
-
|
|
226
|
-
0.
|
|
227
|
-
-2
|
|
183
|
+
-1.2,
|
|
184
|
+
0.45,
|
|
185
|
+
-2.4
|
|
228
186
|
],
|
|
229
187
|
"scale": [
|
|
230
|
-
|
|
231
|
-
0.
|
|
232
|
-
|
|
188
|
+
4,
|
|
189
|
+
0.9,
|
|
190
|
+
0.8
|
|
233
191
|
],
|
|
234
192
|
"baseColor": [
|
|
235
|
-
0.
|
|
236
|
-
0.
|
|
237
|
-
0.
|
|
193
|
+
0.55,
|
|
194
|
+
0.5,
|
|
195
|
+
0.44,
|
|
238
196
|
1
|
|
239
197
|
],
|
|
240
|
-
"metallic": 0.
|
|
241
|
-
"roughness": 0.
|
|
198
|
+
"metallic": 0.05,
|
|
199
|
+
"roughness": 0.7
|
|
242
200
|
},
|
|
243
201
|
{
|
|
244
|
-
"id": "
|
|
202
|
+
"id": "kitchen-worktop",
|
|
245
203
|
"geometry": "cube",
|
|
246
204
|
"position": [
|
|
247
|
-
-1.
|
|
248
|
-
0.
|
|
249
|
-
-2
|
|
205
|
+
-1.2,
|
|
206
|
+
0.92,
|
|
207
|
+
-2.4
|
|
250
208
|
],
|
|
251
209
|
"scale": [
|
|
252
|
-
|
|
253
|
-
0.
|
|
254
|
-
|
|
210
|
+
4.1,
|
|
211
|
+
0.08,
|
|
212
|
+
0.85
|
|
255
213
|
],
|
|
256
214
|
"baseColor": [
|
|
257
|
-
0.
|
|
258
|
-
0.
|
|
259
|
-
0.
|
|
215
|
+
0.18,
|
|
216
|
+
0.18,
|
|
217
|
+
0.2,
|
|
260
218
|
1
|
|
261
219
|
],
|
|
262
|
-
"metallic": 0.
|
|
263
|
-
"roughness": 0.
|
|
220
|
+
"metallic": 0.2,
|
|
221
|
+
"roughness": 0.35
|
|
264
222
|
},
|
|
265
223
|
{
|
|
266
|
-
"id": "
|
|
224
|
+
"id": "kitchen-uppers",
|
|
267
225
|
"geometry": "cube",
|
|
268
226
|
"position": [
|
|
269
|
-
-2
|
|
270
|
-
|
|
271
|
-
-2.
|
|
227
|
+
-1.2,
|
|
228
|
+
2,
|
|
229
|
+
-2.7
|
|
272
230
|
],
|
|
273
231
|
"scale": [
|
|
274
|
-
|
|
275
|
-
0.
|
|
276
|
-
0.
|
|
232
|
+
3.6,
|
|
233
|
+
0.8,
|
|
234
|
+
0.5
|
|
277
235
|
],
|
|
278
236
|
"baseColor": [
|
|
279
|
-
0.
|
|
280
|
-
0.
|
|
281
|
-
0.
|
|
237
|
+
0.6,
|
|
238
|
+
0.55,
|
|
239
|
+
0.48,
|
|
282
240
|
1
|
|
283
241
|
],
|
|
284
|
-
"metallic": 0.
|
|
285
|
-
"roughness": 0.
|
|
286
|
-
"emissiveColor": [
|
|
287
|
-
0.2,
|
|
288
|
-
0.42,
|
|
289
|
-
0.6
|
|
290
|
-
],
|
|
291
|
-
"emissiveStrength": 0.5
|
|
242
|
+
"metallic": 0.05,
|
|
243
|
+
"roughness": 0.7
|
|
292
244
|
},
|
|
293
245
|
{
|
|
294
|
-
"id": "
|
|
246
|
+
"id": "kitchen-sink",
|
|
295
247
|
"geometry": "cube",
|
|
296
248
|
"position": [
|
|
297
|
-
-
|
|
298
|
-
|
|
299
|
-
-2.
|
|
249
|
+
-2.4,
|
|
250
|
+
0.9,
|
|
251
|
+
-2.4
|
|
300
252
|
],
|
|
301
253
|
"scale": [
|
|
302
254
|
0.7,
|
|
303
|
-
0.
|
|
304
|
-
0.
|
|
255
|
+
0.12,
|
|
256
|
+
0.5
|
|
305
257
|
],
|
|
306
258
|
"baseColor": [
|
|
307
|
-
0.
|
|
308
|
-
0.
|
|
309
|
-
0.
|
|
259
|
+
0.62,
|
|
260
|
+
0.64,
|
|
261
|
+
0.68,
|
|
310
262
|
1
|
|
311
263
|
],
|
|
312
|
-
"metallic": 0.
|
|
313
|
-
"roughness": 0.
|
|
314
|
-
"emissiveColor": [
|
|
315
|
-
0.22,
|
|
316
|
-
0.4,
|
|
317
|
-
0.55
|
|
318
|
-
],
|
|
319
|
-
"emissiveStrength": 0.5
|
|
264
|
+
"metallic": 0.7,
|
|
265
|
+
"roughness": 0.3
|
|
320
266
|
},
|
|
321
267
|
{
|
|
322
|
-
"id": "
|
|
323
|
-
"geometry": "
|
|
268
|
+
"id": "kitchen-faucet",
|
|
269
|
+
"geometry": "cylinder",
|
|
324
270
|
"position": [
|
|
325
|
-
|
|
326
|
-
1,
|
|
271
|
+
-2.4,
|
|
272
|
+
1.12,
|
|
327
273
|
-2.6
|
|
328
274
|
],
|
|
329
275
|
"scale": [
|
|
330
|
-
0.
|
|
331
|
-
2,
|
|
332
|
-
1.6
|
|
333
|
-
],
|
|
334
|
-
"baseColor": [
|
|
276
|
+
0.05,
|
|
335
277
|
0.4,
|
|
336
|
-
0.
|
|
337
|
-
0.5,
|
|
338
|
-
1
|
|
339
|
-
],
|
|
340
|
-
"metallic": 0.1,
|
|
341
|
-
"roughness": 0.7
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"id": "office-desk2-top",
|
|
345
|
-
"geometry": "cube",
|
|
346
|
-
"position": [
|
|
347
|
-
2.6,
|
|
348
|
-
0.78,
|
|
349
|
-
-2
|
|
350
|
-
],
|
|
351
|
-
"scale": [
|
|
352
|
-
2.2,
|
|
353
|
-
0.12,
|
|
354
|
-
1
|
|
278
|
+
0.05
|
|
355
279
|
],
|
|
356
280
|
"baseColor": [
|
|
357
|
-
0.7,
|
|
358
281
|
0.7,
|
|
359
282
|
0.72,
|
|
283
|
+
0.76,
|
|
360
284
|
1
|
|
361
285
|
],
|
|
362
|
-
"metallic": 0.
|
|
363
|
-
"roughness": 0.
|
|
286
|
+
"metallic": 0.8,
|
|
287
|
+
"roughness": 0.2
|
|
364
288
|
},
|
|
365
289
|
{
|
|
366
|
-
"id": "
|
|
367
|
-
"geometry": "
|
|
290
|
+
"id": "kitchen-stove",
|
|
291
|
+
"geometry": "cube",
|
|
368
292
|
"position": [
|
|
369
|
-
|
|
370
|
-
0.
|
|
371
|
-
-
|
|
293
|
+
0.4,
|
|
294
|
+
0.45,
|
|
295
|
+
-2.4
|
|
372
296
|
],
|
|
373
297
|
"scale": [
|
|
374
|
-
0.
|
|
375
|
-
0.
|
|
376
|
-
0.
|
|
298
|
+
0.9,
|
|
299
|
+
0.9,
|
|
300
|
+
0.8
|
|
377
301
|
],
|
|
378
302
|
"baseColor": [
|
|
379
|
-
0.
|
|
380
|
-
0.
|
|
381
|
-
0.
|
|
303
|
+
0.2,
|
|
304
|
+
0.2,
|
|
305
|
+
0.22,
|
|
382
306
|
1
|
|
383
307
|
],
|
|
384
|
-
"metallic": 0.
|
|
385
|
-
"roughness": 0.
|
|
308
|
+
"metallic": 0.5,
|
|
309
|
+
"roughness": 0.4,
|
|
310
|
+
"emissiveColor": [
|
|
311
|
+
0.3,
|
|
312
|
+
0.08,
|
|
313
|
+
0.04
|
|
314
|
+
],
|
|
315
|
+
"emissiveStrength": 0.25
|
|
386
316
|
},
|
|
387
317
|
{
|
|
388
|
-
"id": "
|
|
389
|
-
"geometry": "
|
|
318
|
+
"id": "kitchen-hood",
|
|
319
|
+
"geometry": "cube",
|
|
390
320
|
"position": [
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
-
|
|
321
|
+
0.4,
|
|
322
|
+
1.9,
|
|
323
|
+
-2.6
|
|
394
324
|
],
|
|
395
325
|
"scale": [
|
|
396
|
-
|
|
397
|
-
0.
|
|
398
|
-
0.
|
|
326
|
+
1,
|
|
327
|
+
0.4,
|
|
328
|
+
0.6
|
|
399
329
|
],
|
|
400
330
|
"baseColor": [
|
|
401
|
-
0.
|
|
402
|
-
0.
|
|
403
|
-
0.
|
|
331
|
+
0.55,
|
|
332
|
+
0.56,
|
|
333
|
+
0.6,
|
|
404
334
|
1
|
|
405
335
|
],
|
|
406
336
|
"metallic": 0.6,
|
|
407
|
-
"roughness": 0.
|
|
337
|
+
"roughness": 0.3
|
|
408
338
|
},
|
|
409
339
|
{
|
|
410
|
-
"id": "
|
|
411
|
-
"geometry": "
|
|
340
|
+
"id": "kitchen-fridge",
|
|
341
|
+
"geometry": "cube",
|
|
412
342
|
"position": [
|
|
413
|
-
3
|
|
414
|
-
|
|
415
|
-
-
|
|
343
|
+
3,
|
|
344
|
+
1.05,
|
|
345
|
+
-2.3
|
|
416
346
|
],
|
|
417
347
|
"scale": [
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
0.
|
|
348
|
+
1,
|
|
349
|
+
2.1,
|
|
350
|
+
0.8
|
|
421
351
|
],
|
|
422
352
|
"baseColor": [
|
|
423
|
-
0.
|
|
424
|
-
0.
|
|
425
|
-
0.
|
|
353
|
+
0.78,
|
|
354
|
+
0.79,
|
|
355
|
+
0.82,
|
|
426
356
|
1
|
|
427
357
|
],
|
|
428
|
-
"metallic": 0,
|
|
429
|
-
"roughness": 0.
|
|
358
|
+
"metallic": 0.5,
|
|
359
|
+
"roughness": 0.3
|
|
430
360
|
},
|
|
431
361
|
{
|
|
432
|
-
"id": "
|
|
433
|
-
"geometry": "
|
|
362
|
+
"id": "kitchen-island",
|
|
363
|
+
"geometry": "cube",
|
|
434
364
|
"position": [
|
|
435
|
-
|
|
436
|
-
0.
|
|
437
|
-
-
|
|
365
|
+
0.6,
|
|
366
|
+
0.45,
|
|
367
|
+
-0.6
|
|
438
368
|
],
|
|
439
369
|
"scale": [
|
|
440
|
-
|
|
441
|
-
0.
|
|
442
|
-
0.
|
|
370
|
+
1.6,
|
|
371
|
+
0.9,
|
|
372
|
+
0.9
|
|
443
373
|
],
|
|
444
374
|
"baseColor": [
|
|
445
|
-
0.
|
|
375
|
+
0.5,
|
|
376
|
+
0.45,
|
|
446
377
|
0.4,
|
|
447
|
-
0.18,
|
|
448
378
|
1
|
|
449
379
|
],
|
|
450
|
-
"metallic": 0,
|
|
451
|
-
"roughness": 0.
|
|
380
|
+
"metallic": 0.05,
|
|
381
|
+
"roughness": 0.7
|
|
452
382
|
}
|
|
453
383
|
],
|
|
454
384
|
"lights": [
|
|
@@ -456,25 +386,25 @@
|
|
|
456
386
|
"id": "key",
|
|
457
387
|
"kind": "point",
|
|
458
388
|
"color": [
|
|
459
|
-
|
|
460
|
-
0.
|
|
461
|
-
|
|
389
|
+
1,
|
|
390
|
+
0.94,
|
|
391
|
+
0.84
|
|
462
392
|
],
|
|
463
393
|
"position": [
|
|
464
|
-
-2.
|
|
465
|
-
3.
|
|
394
|
+
-2.4,
|
|
395
|
+
3.6,
|
|
466
396
|
3
|
|
467
397
|
],
|
|
468
398
|
"intensity": 4.2,
|
|
469
|
-
"range":
|
|
399
|
+
"range": 18
|
|
470
400
|
},
|
|
471
401
|
{
|
|
472
402
|
"id": "fill",
|
|
473
403
|
"kind": "point",
|
|
474
404
|
"color": [
|
|
475
|
-
0.86,
|
|
476
405
|
0.9,
|
|
477
|
-
0.
|
|
406
|
+
0.9,
|
|
407
|
+
0.92
|
|
478
408
|
],
|
|
479
409
|
"position": [
|
|
480
410
|
2.8,
|
|
@@ -488,12 +418,12 @@
|
|
|
488
418
|
"id": "rim",
|
|
489
419
|
"kind": "point",
|
|
490
420
|
"color": [
|
|
491
|
-
|
|
492
|
-
0.
|
|
493
|
-
|
|
421
|
+
1,
|
|
422
|
+
0.88,
|
|
423
|
+
0.72
|
|
494
424
|
],
|
|
495
425
|
"position": [
|
|
496
|
-
0.
|
|
426
|
+
0.4,
|
|
497
427
|
2.4,
|
|
498
428
|
-2.6
|
|
499
429
|
],
|
|
@@ -551,7 +481,7 @@
|
|
|
551
481
|
],
|
|
552
482
|
"blocking": [
|
|
553
483
|
{
|
|
554
|
-
"characterId": "
|
|
484
|
+
"characterId": "chefs",
|
|
555
485
|
"shots": [
|
|
556
486
|
{
|
|
557
487
|
"shotId": "shot-1",
|
|
@@ -569,85 +499,26 @@
|
|
|
569
499
|
{
|
|
570
500
|
"time": 2.88,
|
|
571
501
|
"position": [
|
|
572
|
-
-0.936,
|
|
573
|
-
0,
|
|
574
|
-
0
|
|
575
|
-
],
|
|
576
|
-
"yaw": 1.5707963267948966
|
|
577
|
-
}
|
|
578
|
-
]
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"shotId": "shot-2",
|
|
582
|
-
"clip": "talk",
|
|
583
|
-
"waypoints": [
|
|
584
|
-
{
|
|
585
|
-
"time": 8,
|
|
586
|
-
"position": [
|
|
587
|
-
-0.936,
|
|
588
|
-
0,
|
|
589
|
-
0
|
|
590
|
-
],
|
|
591
|
-
"yaw": 1.5707963267948966
|
|
592
|
-
}
|
|
593
|
-
]
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
"shotId": "shot-3",
|
|
597
|
-
"clip": "gesture",
|
|
598
|
-
"waypoints": [
|
|
599
|
-
{
|
|
600
|
-
"time": 16,
|
|
601
|
-
"position": [
|
|
602
|
-
-0.936,
|
|
603
502
|
0,
|
|
604
|
-
0
|
|
605
|
-
],
|
|
606
|
-
"yaw": 1.5707963267948966
|
|
607
|
-
}
|
|
608
|
-
]
|
|
609
|
-
}
|
|
610
|
-
]
|
|
611
|
-
},
|
|
612
|
-
{
|
|
613
|
-
"characterId": "worker-2",
|
|
614
|
-
"shots": [
|
|
615
|
-
{
|
|
616
|
-
"shotId": "shot-1",
|
|
617
|
-
"clip": "run",
|
|
618
|
-
"waypoints": [
|
|
619
|
-
{
|
|
620
|
-
"time": 0,
|
|
621
|
-
"position": [
|
|
622
|
-
4.1,
|
|
623
|
-
0,
|
|
624
|
-
0
|
|
625
|
-
],
|
|
626
|
-
"yaw": -1.5707963267948966
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"time": 2.88,
|
|
630
|
-
"position": [
|
|
631
|
-
0.936,
|
|
632
503
|
0,
|
|
633
504
|
0
|
|
634
505
|
],
|
|
635
|
-
"yaw":
|
|
506
|
+
"yaw": 0
|
|
636
507
|
}
|
|
637
508
|
]
|
|
638
509
|
},
|
|
639
510
|
{
|
|
640
511
|
"shotId": "shot-2",
|
|
641
|
-
"clip": "
|
|
512
|
+
"clip": "walk",
|
|
642
513
|
"waypoints": [
|
|
643
514
|
{
|
|
644
515
|
"time": 8,
|
|
645
516
|
"position": [
|
|
646
|
-
0
|
|
517
|
+
0,
|
|
647
518
|
0,
|
|
648
519
|
0
|
|
649
520
|
],
|
|
650
|
-
"yaw":
|
|
521
|
+
"yaw": 0
|
|
651
522
|
}
|
|
652
523
|
]
|
|
653
524
|
},
|
|
@@ -658,11 +529,11 @@
|
|
|
658
529
|
{
|
|
659
530
|
"time": 16,
|
|
660
531
|
"position": [
|
|
661
|
-
0
|
|
532
|
+
0,
|
|
662
533
|
0,
|
|
663
534
|
0
|
|
664
535
|
],
|
|
665
|
-
"yaw":
|
|
536
|
+
"yaw": 0
|
|
666
537
|
}
|
|
667
538
|
]
|
|
668
539
|
}
|
|
@@ -678,45 +549,45 @@
|
|
|
678
549
|
"lines": [
|
|
679
550
|
{
|
|
680
551
|
"lineId": "l0",
|
|
681
|
-
"speakerId": "
|
|
682
|
-
"text": "
|
|
683
|
-
"startTime": 0.
|
|
684
|
-
"endTime": 2.
|
|
552
|
+
"speakerId": "chefs",
|
|
553
|
+
"text": "Hey, is the chefs ready?",
|
|
554
|
+
"startTime": 0.2,
|
|
555
|
+
"endTime": 2.668
|
|
685
556
|
},
|
|
686
557
|
{
|
|
687
558
|
"lineId": "l1",
|
|
688
|
-
"speakerId": "
|
|
689
|
-
"text": "
|
|
690
|
-
"startTime":
|
|
691
|
-
"endTime":
|
|
559
|
+
"speakerId": "chefs",
|
|
560
|
+
"text": "Almost! Just give me a second.",
|
|
561
|
+
"startTime": 2.918,
|
|
562
|
+
"endTime": 5.9
|
|
692
563
|
},
|
|
693
564
|
{
|
|
694
565
|
"lineId": "l2",
|
|
695
|
-
"speakerId": "
|
|
696
|
-
"text": "
|
|
697
|
-
"startTime":
|
|
698
|
-
"endTime":
|
|
566
|
+
"speakerId": "chefs",
|
|
567
|
+
"text": "That is great news.",
|
|
568
|
+
"startTime": 6.15,
|
|
569
|
+
"endTime": 8.005
|
|
699
570
|
},
|
|
700
571
|
{
|
|
701
572
|
"lineId": "l3",
|
|
702
|
-
"speakerId": "
|
|
703
|
-
"text": "
|
|
704
|
-
"startTime":
|
|
705
|
-
"endTime":
|
|
573
|
+
"speakerId": "chefs",
|
|
574
|
+
"text": "I know, I can NOT wait to show you.",
|
|
575
|
+
"startTime": 8.255,
|
|
576
|
+
"endTime": 12.178
|
|
706
577
|
},
|
|
707
578
|
{
|
|
708
579
|
"lineId": "l4",
|
|
709
|
-
"speakerId": "
|
|
710
|
-
"text": "
|
|
711
|
-
"startTime":
|
|
712
|
-
"endTime":
|
|
580
|
+
"speakerId": "chefs",
|
|
581
|
+
"text": "Come over and let us take a look.",
|
|
582
|
+
"startTime": 12.428,
|
|
583
|
+
"endTime": 15.737
|
|
713
584
|
},
|
|
714
585
|
{
|
|
715
586
|
"lineId": "l5",
|
|
716
|
-
"speakerId": "
|
|
717
|
-
"text": "
|
|
718
|
-
"startTime":
|
|
719
|
-
"endTime":
|
|
587
|
+
"speakerId": "chefs",
|
|
588
|
+
"text": "Here it is, right in front of you.",
|
|
589
|
+
"startTime": 15.987,
|
|
590
|
+
"endTime": 19.546
|
|
720
591
|
}
|
|
721
592
|
]
|
|
722
593
|
}
|