create-aura3d 1.3.2 → 1.3.3

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.
Files changed (110) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +9 -2
  4. package/dist/index.js.map +1 -1
  5. package/package.json +10 -2
  6. package/templates/animation-channel/package.json +1 -1
  7. package/templates/animation-channel/tests/screenshot.spec.ts +16 -0
  8. package/templates/animation-studio/dist/episodes/prompt-to-scene-proof/two-robots-fixing-a-car.document.json +680 -0
  9. package/templates/animation-studio/dist/episodes/scene/episode-3d.webm +0 -0
  10. package/templates/animation-studio/dist/episodes/scene/frames/action.png +0 -0
  11. package/templates/animation-studio/dist/episodes/scene/frames/dialogue.png +0 -0
  12. package/templates/animation-studio/dist/episodes/scene/frames/final.png +0 -0
  13. package/templates/animation-studio/dist/episodes/scene/frames/first.png +0 -0
  14. package/templates/animation-studio/dist/episodes/scene/frames/mouth-closed.png +0 -0
  15. package/templates/animation-studio/dist/episodes/scene/frames/mouth-open.png +0 -0
  16. package/templates/animation-studio/dist/episodes/scene/render-live-summary.json +4829 -682
  17. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/friend-1.png +0 -0
  18. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/friend-2.png +0 -0
  19. package/templates/animation-studio/dist/scene/working.document.json +95 -16
  20. package/templates/animation-studio/index.html +12 -0
  21. package/templates/animation-studio/node_modules.publish-aside/.vite/deps/_metadata.json +8 -0
  22. package/templates/animation-studio/node_modules.publish-aside/.vite/deps/package.json +3 -0
  23. package/templates/animation-studio/package.json +1 -1
  24. package/templates/animation-studio/scripts/asset-motion-probe.ts +7 -1
  25. package/templates/animation-studio/scripts/render-live.ts +24 -0
  26. package/templates/animation-studio/src/director/prompt-to-scene.ts +73 -5
  27. package/templates/animation-studio/studio/dist/assets/index-C7f8tHfi.css +1 -0
  28. package/templates/animation-studio/studio/dist/assets/index-CLo3GXyN.js +43 -0
  29. package/templates/animation-studio/studio/dist/index.html +2 -2
  30. package/templates/animation-studio/studio/src/App.tsx +146 -78
  31. package/templates/animation-studio/studio/src/components/Console.tsx +8 -2
  32. package/templates/animation-studio/studio/src/components/Inspector.tsx +57 -1
  33. package/templates/animation-studio/studio/src/components/Stage.tsx +10 -5
  34. package/templates/animation-studio/studio/src/components/Timeline.tsx +49 -2
  35. package/templates/animation-studio/studio/src/state/mapDocument.ts +13 -2
  36. package/templates/animation-studio/studio/src/state/sceneTool.ts +20 -9
  37. package/templates/animation-studio/studio/src/state/types.ts +8 -0
  38. package/templates/animation-studio/tests/route-health.spec.ts +33 -0
  39. package/templates/animation-studio/tests/screenshot.spec.ts +30 -0
  40. package/templates/character-controller/package.json +1 -1
  41. package/templates/character-controller/src/main.ts +18 -1
  42. package/templates/cinematic-scene/package.json +1 -1
  43. package/templates/cinematic-scene/tests/screenshot.spec.ts +3 -1
  44. package/templates/episode-builder/package.json +1 -1
  45. package/templates/episode-builder/tests/screenshot.spec.ts +15 -0
  46. package/templates/fighting-game/package.json +1 -1
  47. package/templates/fighting-game/tests/screenshot.spec.ts +15 -0
  48. package/templates/mini-game/package.json +1 -1
  49. package/templates/product-viewer/package.json +1 -1
  50. package/templates/product-viewer/tests/screenshot.spec.ts +3 -1
  51. package/templates/prompt-animation-channel/package.json +1 -1
  52. package/templates/prompt-animation-channel/tests/screenshot.spec.ts +15 -0
  53. package/templates/three-compat-architecture-interior/index.html +16 -0
  54. package/templates/three-compat-architecture-interior/package.json +21 -0
  55. package/templates/three-compat-architecture-interior/playwright.config.ts +14 -0
  56. package/templates/three-compat-architecture-interior/src/main.ts +27 -0
  57. package/templates/three-compat-architecture-interior/tests/route-health.spec.ts +16 -0
  58. package/templates/three-compat-architecture-interior/tests/screenshot.spec.ts +15 -0
  59. package/templates/three-compat-architecture-interior/tsconfig.json +19 -0
  60. package/templates/three-compat-asset-inspector/index.html +16 -0
  61. package/templates/three-compat-asset-inspector/package.json +21 -0
  62. package/templates/three-compat-asset-inspector/playwright.config.ts +14 -0
  63. package/templates/three-compat-asset-inspector/src/main.ts +17 -0
  64. package/templates/three-compat-asset-inspector/tests/route-health.spec.ts +16 -0
  65. package/templates/three-compat-asset-inspector/tests/screenshot.spec.ts +15 -0
  66. package/templates/three-compat-asset-inspector/tsconfig.json +19 -0
  67. package/templates/three-compat-character-viewer/index.html +16 -0
  68. package/templates/three-compat-character-viewer/package.json +21 -0
  69. package/templates/three-compat-character-viewer/playwright.config.ts +14 -0
  70. package/templates/three-compat-character-viewer/src/main.ts +17 -0
  71. package/templates/three-compat-character-viewer/tests/route-health.spec.ts +16 -0
  72. package/templates/three-compat-character-viewer/tests/screenshot.spec.ts +15 -0
  73. package/templates/three-compat-character-viewer/tsconfig.json +19 -0
  74. package/templates/three-compat-custom-threejs-migration/index.html +16 -0
  75. package/templates/three-compat-custom-threejs-migration/package.json +21 -0
  76. package/templates/three-compat-custom-threejs-migration/playwright.config.ts +14 -0
  77. package/templates/three-compat-custom-threejs-migration/src/main.ts +16 -0
  78. package/templates/three-compat-custom-threejs-migration/tests/route-health.spec.ts +16 -0
  79. package/templates/three-compat-custom-threejs-migration/tests/screenshot.spec.ts +15 -0
  80. package/templates/three-compat-custom-threejs-migration/tsconfig.json +19 -0
  81. package/templates/three-compat-large-scene/index.html +16 -0
  82. package/templates/three-compat-large-scene/package.json +21 -0
  83. package/templates/three-compat-large-scene/playwright.config.ts +14 -0
  84. package/templates/three-compat-large-scene/src/main.ts +31 -0
  85. package/templates/three-compat-large-scene/tests/route-health.spec.ts +16 -0
  86. package/templates/three-compat-large-scene/tests/screenshot.spec.ts +15 -0
  87. package/templates/three-compat-large-scene/tsconfig.json +19 -0
  88. package/templates/three-compat-material-authoring/index.html +16 -0
  89. package/templates/three-compat-material-authoring/package.json +21 -0
  90. package/templates/three-compat-material-authoring/playwright.config.ts +14 -0
  91. package/templates/three-compat-material-authoring/src/main.ts +33 -0
  92. package/templates/three-compat-material-authoring/tests/route-health.spec.ts +16 -0
  93. package/templates/three-compat-material-authoring/tests/screenshot.spec.ts +15 -0
  94. package/templates/three-compat-material-authoring/tsconfig.json +19 -0
  95. package/templates/three-compat-postprocess-scene/index.html +16 -0
  96. package/templates/three-compat-postprocess-scene/package.json +21 -0
  97. package/templates/three-compat-postprocess-scene/playwright.config.ts +14 -0
  98. package/templates/three-compat-postprocess-scene/src/main.ts +17 -0
  99. package/templates/three-compat-postprocess-scene/tests/route-health.spec.ts +16 -0
  100. package/templates/three-compat-postprocess-scene/tests/screenshot.spec.ts +15 -0
  101. package/templates/three-compat-postprocess-scene/tsconfig.json +19 -0
  102. package/templates/three-compat-premium-product-viewer/index.html +16 -0
  103. package/templates/three-compat-premium-product-viewer/package.json +21 -0
  104. package/templates/three-compat-premium-product-viewer/playwright.config.ts +14 -0
  105. package/templates/three-compat-premium-product-viewer/src/main.ts +18 -0
  106. package/templates/three-compat-premium-product-viewer/tests/route-health.spec.ts +16 -0
  107. package/templates/three-compat-premium-product-viewer/tests/screenshot.spec.ts +15 -0
  108. package/templates/three-compat-premium-product-viewer/tsconfig.json +19 -0
  109. package/templates/animation-studio/studio/dist/assets/index-i8URxOOt.css +0 -1
  110. package/templates/animation-studio/studio/dist/assets/index-pC9hdZ-B.js +0 -11
@@ -0,0 +1,680 @@
1
+ {
2
+ "id": "scene-two-robots-fixing-a-car-in-a-gar",
3
+ "duration": 24,
4
+ "assets": {
5
+ "characters": [
6
+ {
7
+ "id": "robot-1",
8
+ "url": "/aura-assets/cast-a.catalog.glb",
9
+ "scale": 1.3,
10
+ "defaultClip": "idle",
11
+ "availableClips": [
12
+ "idle",
13
+ "talk",
14
+ "gesture",
15
+ "point",
16
+ "nod",
17
+ "walk",
18
+ "run",
19
+ "react"
20
+ ],
21
+ "mouthMorphIndex": 0,
22
+ "attribution": "\"robot 1\" — curated A-grade humanoid (humanoid-a)",
23
+ "license": "CC0",
24
+ "fidelityGrade": "A"
25
+ },
26
+ {
27
+ "id": "robot-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": "\"robot 2\" — curated A-grade humanoid (humanoid-b)",
43
+ "license": "CC0",
44
+ "fidelityGrade": "A"
45
+ }
46
+ ],
47
+ "props": [
48
+ {
49
+ "id": "car",
50
+ "attribution": "prompt object: car (procedural — no resolved mesh)",
51
+ "license": "CC0"
52
+ }
53
+ ]
54
+ },
55
+ "set": {
56
+ "clearColor": [
57
+ 0.07,
58
+ 0.07,
59
+ 0.075,
60
+ 1
61
+ ],
62
+ "studioLightingScale": 0.55,
63
+ "environment": {
64
+ "color": [
65
+ 0.5,
66
+ 0.49,
67
+ 0.46
68
+ ],
69
+ "intensity": 0.42,
70
+ "proceduralMap": {
71
+ "skyColor": [
72
+ 0.16,
73
+ 0.16,
74
+ 0.17
75
+ ],
76
+ "horizonColor": [
77
+ 0.22,
78
+ 0.21,
79
+ 0.2
80
+ ],
81
+ "groundColor": [
82
+ 0.1,
83
+ 0.1,
84
+ 0.1
85
+ ],
86
+ "specularColor": [
87
+ 0.85,
88
+ 0.82,
89
+ 0.75
90
+ ],
91
+ "intensity": 0.4,
92
+ "specularIntensity": 0.55
93
+ },
94
+ "hdri": {
95
+ "skyColor": [
96
+ 0.42,
97
+ 0.42,
98
+ 0.44
99
+ ],
100
+ "horizonColor": [
101
+ 0.26,
102
+ 0.25,
103
+ 0.24
104
+ ],
105
+ "groundColor": [
106
+ 0.1,
107
+ 0.1,
108
+ 0.1
109
+ ],
110
+ "sun": {
111
+ "color": [
112
+ 1,
113
+ 0.92,
114
+ 0.78
115
+ ],
116
+ "intensity": 1.8,
117
+ "azimuth": -0.4,
118
+ "elevation": 1,
119
+ "angularRadius": 0.18
120
+ },
121
+ "intensity": 0.55,
122
+ "specularIntensity": 0.6
123
+ }
124
+ },
125
+ "pieces": [
126
+ {
127
+ "id": "garage-cyc-wall",
128
+ "geometry": "sphere",
129
+ "position": [
130
+ 0,
131
+ 6,
132
+ -22
133
+ ],
134
+ "scale": [
135
+ 56,
136
+ 32,
137
+ 8
138
+ ],
139
+ "baseColor": [
140
+ 0.27,
141
+ 0.27,
142
+ 0.28,
143
+ 1
144
+ ],
145
+ "metallic": 0,
146
+ "roughness": 1,
147
+ "emissiveColor": [
148
+ 0.16,
149
+ 0.16,
150
+ 0.17
151
+ ],
152
+ "emissiveStrength": 0.4
153
+ },
154
+ {
155
+ "id": "ground-base",
156
+ "geometry": "cube",
157
+ "position": [
158
+ 0,
159
+ -0.06,
160
+ 0
161
+ ],
162
+ "scale": [
163
+ 120,
164
+ 0.12,
165
+ 120
166
+ ],
167
+ "baseColor": [
168
+ 0.22,
169
+ 0.22,
170
+ 0.23,
171
+ 1
172
+ ],
173
+ "metallic": 0.05,
174
+ "roughness": 0.9,
175
+ "emissiveColor": [
176
+ 0.022000000000000002,
177
+ 0.022000000000000002,
178
+ 0.023000000000000003
179
+ ],
180
+ "emissiveStrength": 0.05,
181
+ "includeInAutoFrame": true
182
+ },
183
+ {
184
+ "id": "ground-apron",
185
+ "geometry": "cube",
186
+ "position": [
187
+ 0,
188
+ -0.04,
189
+ 3.2
190
+ ],
191
+ "scale": [
192
+ 16,
193
+ 0.08,
194
+ 6
195
+ ],
196
+ "baseColor": [
197
+ 0.16,
198
+ 0.16,
199
+ 0.17,
200
+ 1
201
+ ],
202
+ "metallic": 0.05,
203
+ "roughness": 0.9500000000000001
204
+ },
205
+ {
206
+ "id": "garage-door",
207
+ "geometry": "cube",
208
+ "position": [
209
+ 0,
210
+ 1.6,
211
+ -3.2
212
+ ],
213
+ "scale": [
214
+ 4.4,
215
+ 3,
216
+ 0.18
217
+ ],
218
+ "baseColor": [
219
+ 0.5,
220
+ 0.52,
221
+ 0.55,
222
+ 1
223
+ ],
224
+ "metallic": 0.4,
225
+ "roughness": 0.5,
226
+ "emissiveColor": [
227
+ 0.08,
228
+ 0.08,
229
+ 0.09
230
+ ],
231
+ "emissiveStrength": 0.1
232
+ },
233
+ {
234
+ "id": "garage-bench-top",
235
+ "geometry": "cube",
236
+ "position": [
237
+ 3,
238
+ 0.85,
239
+ -2.2
240
+ ],
241
+ "scale": [
242
+ 2.4,
243
+ 0.16,
244
+ 0.9
245
+ ],
246
+ "baseColor": [
247
+ 0.34,
248
+ 0.26,
249
+ 0.18,
250
+ 1
251
+ ],
252
+ "metallic": 0.1,
253
+ "roughness": 0.8
254
+ },
255
+ {
256
+ "id": "garage-bench-leg-l",
257
+ "geometry": "cube",
258
+ "position": [
259
+ 2.1,
260
+ 0.42,
261
+ -2.2
262
+ ],
263
+ "scale": [
264
+ 0.14,
265
+ 0.84,
266
+ 0.8
267
+ ],
268
+ "baseColor": [
269
+ 0.2,
270
+ 0.2,
271
+ 0.22,
272
+ 1
273
+ ],
274
+ "metallic": 0.5,
275
+ "roughness": 0.5
276
+ },
277
+ {
278
+ "id": "garage-bench-leg-r",
279
+ "geometry": "cube",
280
+ "position": [
281
+ 3.9,
282
+ 0.42,
283
+ -2.2
284
+ ],
285
+ "scale": [
286
+ 0.14,
287
+ 0.84,
288
+ 0.8
289
+ ],
290
+ "baseColor": [
291
+ 0.2,
292
+ 0.2,
293
+ 0.22,
294
+ 1
295
+ ],
296
+ "metallic": 0.5,
297
+ "roughness": 0.5
298
+ },
299
+ {
300
+ "id": "garage-toolwall",
301
+ "geometry": "cube",
302
+ "position": [
303
+ -3.4,
304
+ 1.6,
305
+ -2.6
306
+ ],
307
+ "scale": [
308
+ 1.8,
309
+ 1.6,
310
+ 0.1
311
+ ],
312
+ "baseColor": [
313
+ 0.2,
314
+ 0.28,
315
+ 0.3,
316
+ 1
317
+ ],
318
+ "metallic": 0.2,
319
+ "roughness": 0.7
320
+ },
321
+ {
322
+ "id": "garage-shelf",
323
+ "geometry": "cube",
324
+ "position": [
325
+ -3,
326
+ 0.5,
327
+ -1.4
328
+ ],
329
+ "scale": [
330
+ 1.4,
331
+ 0.1,
332
+ 0.7
333
+ ],
334
+ "baseColor": [
335
+ 0.3,
336
+ 0.3,
337
+ 0.32,
338
+ 1
339
+ ],
340
+ "metallic": 0.4,
341
+ "roughness": 0.5
342
+ },
343
+ {
344
+ "id": "garage-box-1",
345
+ "geometry": "cube",
346
+ "position": [
347
+ -3.2,
348
+ 0.75,
349
+ -1.5
350
+ ],
351
+ "scale": [
352
+ 0.4,
353
+ 0.4,
354
+ 0.4
355
+ ],
356
+ "baseColor": [
357
+ 0.45,
358
+ 0.32,
359
+ 0.18,
360
+ 1
361
+ ],
362
+ "metallic": 0,
363
+ "roughness": 0.95
364
+ },
365
+ {
366
+ "id": "garage-box-2",
367
+ "geometry": "cube",
368
+ "position": [
369
+ -2.7,
370
+ 0.72,
371
+ -1.4
372
+ ],
373
+ "scale": [
374
+ 0.36,
375
+ 0.36,
376
+ 0.36
377
+ ],
378
+ "baseColor": [
379
+ 0.5,
380
+ 0.45,
381
+ 0.2,
382
+ 1
383
+ ],
384
+ "metallic": 0,
385
+ "roughness": 0.95
386
+ },
387
+ {
388
+ "id": "garage-tire",
389
+ "geometry": "cylinder",
390
+ "position": [
391
+ 1.6,
392
+ 0.35,
393
+ -2.5
394
+ ],
395
+ "scale": [
396
+ 0.7,
397
+ 0.3,
398
+ 0.7
399
+ ],
400
+ "roll": 1.5707963267948966,
401
+ "baseColor": [
402
+ 0.06,
403
+ 0.06,
404
+ 0.07,
405
+ 1
406
+ ],
407
+ "metallic": 0,
408
+ "roughness": 0.98
409
+ }
410
+ ],
411
+ "lights": [
412
+ {
413
+ "id": "key",
414
+ "kind": "point",
415
+ "color": [
416
+ 1,
417
+ 0.95,
418
+ 0.86
419
+ ],
420
+ "position": [
421
+ -2.4,
422
+ 3.6,
423
+ 2.8
424
+ ],
425
+ "intensity": 4.2,
426
+ "range": 18
427
+ },
428
+ {
429
+ "id": "fill",
430
+ "kind": "point",
431
+ "color": [
432
+ 0.86,
433
+ 0.88,
434
+ 0.92
435
+ ],
436
+ "position": [
437
+ 2.8,
438
+ 2.2,
439
+ 1.6
440
+ ],
441
+ "intensity": 2,
442
+ "range": 13
443
+ },
444
+ {
445
+ "id": "rim",
446
+ "kind": "point",
447
+ "color": [
448
+ 0.95,
449
+ 0.86,
450
+ 0.7
451
+ ],
452
+ "position": [
453
+ 0.4,
454
+ 2.4,
455
+ -2.6
456
+ ],
457
+ "intensity": 2.4,
458
+ "range": 13
459
+ }
460
+ ]
461
+ },
462
+ "walkableBounds": {
463
+ "min": [
464
+ -3.6,
465
+ 0,
466
+ -2
467
+ ],
468
+ "max": [
469
+ 3.6,
470
+ 0,
471
+ 2
472
+ ]
473
+ },
474
+ "shots": [
475
+ {
476
+ "shotId": "shot-1",
477
+ "presetId": "establishing",
478
+ "startTime": 0,
479
+ "endTime": 8,
480
+ "cameraSubject": [
481
+ 0,
482
+ 0,
483
+ 0
484
+ ]
485
+ },
486
+ {
487
+ "shotId": "shot-2",
488
+ "presetId": "medium",
489
+ "startTime": 8,
490
+ "endTime": 16,
491
+ "cameraSubject": [
492
+ 0,
493
+ 0,
494
+ 0
495
+ ]
496
+ },
497
+ {
498
+ "shotId": "shot-3",
499
+ "presetId": "medium",
500
+ "startTime": 16,
501
+ "endTime": 24,
502
+ "cameraSubject": [
503
+ 0,
504
+ 0,
505
+ 0
506
+ ]
507
+ }
508
+ ],
509
+ "blocking": [
510
+ {
511
+ "characterId": "robot-1",
512
+ "shots": [
513
+ {
514
+ "shotId": "shot-1",
515
+ "clip": "run",
516
+ "waypoints": [
517
+ {
518
+ "time": 0,
519
+ "position": [
520
+ -4.1,
521
+ 0,
522
+ 0
523
+ ],
524
+ "yaw": 1.5707963267948966
525
+ },
526
+ {
527
+ "time": 2.88,
528
+ "position": [
529
+ -0.936,
530
+ 0,
531
+ 0
532
+ ],
533
+ "yaw": 1.5707963267948966
534
+ }
535
+ ]
536
+ },
537
+ {
538
+ "shotId": "shot-2",
539
+ "clip": "walk",
540
+ "waypoints": [
541
+ {
542
+ "time": 8,
543
+ "position": [
544
+ -0.936,
545
+ 0,
546
+ 0
547
+ ],
548
+ "yaw": 1.5707963267948966
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "shotId": "shot-3",
554
+ "clip": "react",
555
+ "waypoints": [
556
+ {
557
+ "time": 16,
558
+ "position": [
559
+ -0.936,
560
+ 0,
561
+ 0
562
+ ],
563
+ "yaw": 1.5707963267948966
564
+ }
565
+ ]
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "characterId": "robot-2",
571
+ "shots": [
572
+ {
573
+ "shotId": "shot-1",
574
+ "clip": "run",
575
+ "waypoints": [
576
+ {
577
+ "time": 0,
578
+ "position": [
579
+ 4.1,
580
+ 0,
581
+ 0
582
+ ],
583
+ "yaw": -1.5707963267948966
584
+ },
585
+ {
586
+ "time": 2.88,
587
+ "position": [
588
+ 0.936,
589
+ 0,
590
+ 0
591
+ ],
592
+ "yaw": -1.5707963267948966
593
+ }
594
+ ]
595
+ },
596
+ {
597
+ "shotId": "shot-2",
598
+ "clip": "walk",
599
+ "waypoints": [
600
+ {
601
+ "time": 8,
602
+ "position": [
603
+ 0.936,
604
+ 0,
605
+ 0
606
+ ],
607
+ "yaw": -1.5707963267948966
608
+ }
609
+ ]
610
+ },
611
+ {
612
+ "shotId": "shot-3",
613
+ "clip": "point",
614
+ "waypoints": [
615
+ {
616
+ "time": 16,
617
+ "position": [
618
+ 0.936,
619
+ 0,
620
+ 0
621
+ ],
622
+ "yaw": -1.5707963267948966
623
+ }
624
+ ]
625
+ }
626
+ ]
627
+ }
628
+ ],
629
+ "setDressing": [],
630
+ "worldState": {
631
+ "glowSpanSeconds": 24
632
+ },
633
+ "dialogue": {
634
+ "language": "en",
635
+ "lines": [
636
+ {
637
+ "lineId": "l0",
638
+ "speakerId": "robot-1",
639
+ "text": "We have to fix this car before dark.",
640
+ "startTime": 0.2,
641
+ "endTime": 3.509
642
+ },
643
+ {
644
+ "lineId": "l1",
645
+ "speakerId": "robot-2",
646
+ "text": "Agreed, hand me that tool.",
647
+ "startTime": 3.759,
648
+ "endTime": 6.227
649
+ },
650
+ {
651
+ "lineId": "l2",
652
+ "speakerId": "robot-1",
653
+ "text": "Careful, do NOT drop it!",
654
+ "startTime": 6.477,
655
+ "endTime": 8.945
656
+ },
657
+ {
658
+ "lineId": "l3",
659
+ "speakerId": "robot-2",
660
+ "text": "Relax, I have got it.",
661
+ "startTime": 9.195,
662
+ "endTime": 11.663
663
+ },
664
+ {
665
+ "lineId": "l4",
666
+ "speakerId": "robot-1",
667
+ "text": "Now go around and hold the other side.",
668
+ "startTime": 11.913,
669
+ "endTime": 15.222
670
+ },
671
+ {
672
+ "lineId": "l5",
673
+ "speakerId": "robot-2",
674
+ "text": "On it. Pulling now!",
675
+ "startTime": 15.472,
676
+ "endTime": 17.727
677
+ }
678
+ ]
679
+ }
680
+ }