create-aura3d 1.3.1 → 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 (126) hide show
  1. package/dist/cli.js +0 -0
  2. package/dist/index.d.ts +1 -1
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +9 -2
  5. package/dist/index.js.map +1 -1
  6. package/package.json +11 -3
  7. package/templates/animation-channel/package.json +1 -1
  8. package/templates/animation-channel/tests/screenshot.spec.ts +16 -0
  9. package/templates/animation-studio/dist/episodes/prompt-to-scene-proof/two-robots-fixing-a-car.document.json +680 -0
  10. package/templates/animation-studio/dist/episodes/scene/episode-3d.webm +0 -0
  11. package/templates/animation-studio/dist/episodes/scene/frames/action.png +0 -0
  12. package/templates/animation-studio/dist/episodes/scene/frames/dialogue.png +0 -0
  13. package/templates/animation-studio/dist/episodes/scene/frames/final.png +0 -0
  14. package/templates/animation-studio/dist/episodes/scene/frames/first.png +0 -0
  15. package/templates/animation-studio/dist/episodes/scene/frames/mouth-closed.png +0 -0
  16. package/templates/animation-studio/dist/episodes/scene/frames/mouth-open.png +0 -0
  17. package/templates/animation-studio/dist/episodes/scene/render-live-summary.json +2021 -2542
  18. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/broken.png +0 -0
  19. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/chefs.png +0 -0
  20. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/customer.png +0 -0
  21. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/friend-1.png +0 -0
  22. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/friend-2.png +0 -0
  23. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/worker-1.png +0 -0
  24. package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/worker-2.png +0 -0
  25. package/templates/animation-studio/dist/scene/working.document.json +219 -269
  26. package/templates/animation-studio/index.html +12 -0
  27. package/templates/animation-studio/node_modules.publish-aside/.vite/deps/_metadata.json +8 -0
  28. package/templates/animation-studio/node_modules.publish-aside/.vite/deps/package.json +3 -0
  29. package/templates/animation-studio/package-lock.json +1307 -55
  30. package/templates/animation-studio/package.json +11 -5
  31. package/templates/animation-studio/scripts/asset-motion-probe.ts +7 -1
  32. package/templates/animation-studio/scripts/render-live.ts +24 -0
  33. package/templates/animation-studio/src/director/prompt-to-scene.ts +73 -5
  34. package/templates/animation-studio/studio/dist/assets/index-C7f8tHfi.css +1 -0
  35. package/templates/animation-studio/studio/dist/assets/index-CLo3GXyN.js +43 -0
  36. package/templates/animation-studio/studio/dist/index.html +19 -0
  37. package/templates/animation-studio/studio/index.html +18 -0
  38. package/templates/animation-studio/studio/src/App.tsx +498 -0
  39. package/templates/animation-studio/studio/src/components/Console.tsx +372 -0
  40. package/templates/animation-studio/studio/src/components/Icon.tsx +90 -0
  41. package/templates/animation-studio/studio/src/components/Inspector.tsx +265 -0
  42. package/templates/animation-studio/studio/src/components/Outliner.tsx +210 -0
  43. package/templates/animation-studio/studio/src/components/Palette.tsx +204 -0
  44. package/templates/animation-studio/studio/src/components/Stage.tsx +344 -0
  45. package/templates/animation-studio/studio/src/components/Timeline.tsx +230 -0
  46. package/templates/animation-studio/studio/src/components/Topbar.tsx +66 -0
  47. package/templates/animation-studio/studio/src/main.tsx +10 -0
  48. package/templates/animation-studio/studio/src/state/backend.ts +108 -0
  49. package/templates/animation-studio/studio/src/state/fidelity.ts +110 -0
  50. package/templates/animation-studio/studio/src/state/mapDocument.ts +430 -0
  51. package/templates/animation-studio/studio/src/state/sceneTool.ts +66 -0
  52. package/templates/animation-studio/studio/src/state/types.ts +173 -0
  53. package/templates/animation-studio/studio/src/state/util.ts +46 -0
  54. package/templates/animation-studio/studio/src/styles.css +528 -0
  55. package/templates/animation-studio/studio/vite.config.ts +175 -0
  56. package/templates/animation-studio/tests/route-health.spec.ts +33 -0
  57. package/templates/animation-studio/tests/screenshot.spec.ts +30 -0
  58. package/templates/character-controller/package.json +3 -3
  59. package/templates/character-controller/src/main.ts +18 -1
  60. package/templates/cinematic-scene/package.json +1 -1
  61. package/templates/cinematic-scene/tests/screenshot.spec.ts +3 -1
  62. package/templates/episode-builder/package.json +1 -1
  63. package/templates/episode-builder/tests/screenshot.spec.ts +15 -0
  64. package/templates/fighting-game/package.json +1 -1
  65. package/templates/fighting-game/tests/screenshot.spec.ts +15 -0
  66. package/templates/mini-game/package.json +1 -1
  67. package/templates/product-viewer/package.json +1 -1
  68. package/templates/product-viewer/tests/screenshot.spec.ts +3 -1
  69. package/templates/prompt-animation-channel/package.json +1 -1
  70. package/templates/prompt-animation-channel/tests/screenshot.spec.ts +15 -0
  71. package/templates/three-compat-architecture-interior/index.html +16 -0
  72. package/templates/three-compat-architecture-interior/package.json +21 -0
  73. package/templates/three-compat-architecture-interior/playwright.config.ts +14 -0
  74. package/templates/three-compat-architecture-interior/src/main.ts +27 -0
  75. package/templates/three-compat-architecture-interior/tests/route-health.spec.ts +16 -0
  76. package/templates/three-compat-architecture-interior/tests/screenshot.spec.ts +15 -0
  77. package/templates/three-compat-architecture-interior/tsconfig.json +19 -0
  78. package/templates/three-compat-asset-inspector/index.html +16 -0
  79. package/templates/three-compat-asset-inspector/package.json +21 -0
  80. package/templates/three-compat-asset-inspector/playwright.config.ts +14 -0
  81. package/templates/three-compat-asset-inspector/src/main.ts +17 -0
  82. package/templates/three-compat-asset-inspector/tests/route-health.spec.ts +16 -0
  83. package/templates/three-compat-asset-inspector/tests/screenshot.spec.ts +15 -0
  84. package/templates/three-compat-asset-inspector/tsconfig.json +19 -0
  85. package/templates/three-compat-character-viewer/index.html +16 -0
  86. package/templates/three-compat-character-viewer/package.json +21 -0
  87. package/templates/three-compat-character-viewer/playwright.config.ts +14 -0
  88. package/templates/three-compat-character-viewer/src/main.ts +17 -0
  89. package/templates/three-compat-character-viewer/tests/route-health.spec.ts +16 -0
  90. package/templates/three-compat-character-viewer/tests/screenshot.spec.ts +15 -0
  91. package/templates/three-compat-character-viewer/tsconfig.json +19 -0
  92. package/templates/three-compat-custom-threejs-migration/index.html +16 -0
  93. package/templates/three-compat-custom-threejs-migration/package.json +21 -0
  94. package/templates/three-compat-custom-threejs-migration/playwright.config.ts +14 -0
  95. package/templates/three-compat-custom-threejs-migration/src/main.ts +16 -0
  96. package/templates/three-compat-custom-threejs-migration/tests/route-health.spec.ts +16 -0
  97. package/templates/three-compat-custom-threejs-migration/tests/screenshot.spec.ts +15 -0
  98. package/templates/three-compat-custom-threejs-migration/tsconfig.json +19 -0
  99. package/templates/three-compat-large-scene/index.html +16 -0
  100. package/templates/three-compat-large-scene/package.json +21 -0
  101. package/templates/three-compat-large-scene/playwright.config.ts +14 -0
  102. package/templates/three-compat-large-scene/src/main.ts +31 -0
  103. package/templates/three-compat-large-scene/tests/route-health.spec.ts +16 -0
  104. package/templates/three-compat-large-scene/tests/screenshot.spec.ts +15 -0
  105. package/templates/three-compat-large-scene/tsconfig.json +19 -0
  106. package/templates/three-compat-material-authoring/index.html +16 -0
  107. package/templates/three-compat-material-authoring/package.json +21 -0
  108. package/templates/three-compat-material-authoring/playwright.config.ts +14 -0
  109. package/templates/three-compat-material-authoring/src/main.ts +33 -0
  110. package/templates/three-compat-material-authoring/tests/route-health.spec.ts +16 -0
  111. package/templates/three-compat-material-authoring/tests/screenshot.spec.ts +15 -0
  112. package/templates/three-compat-material-authoring/tsconfig.json +19 -0
  113. package/templates/three-compat-postprocess-scene/index.html +16 -0
  114. package/templates/three-compat-postprocess-scene/package.json +21 -0
  115. package/templates/three-compat-postprocess-scene/playwright.config.ts +14 -0
  116. package/templates/three-compat-postprocess-scene/src/main.ts +17 -0
  117. package/templates/three-compat-postprocess-scene/tests/route-health.spec.ts +16 -0
  118. package/templates/three-compat-postprocess-scene/tests/screenshot.spec.ts +15 -0
  119. package/templates/three-compat-postprocess-scene/tsconfig.json +19 -0
  120. package/templates/three-compat-premium-product-viewer/index.html +16 -0
  121. package/templates/three-compat-premium-product-viewer/package.json +21 -0
  122. package/templates/three-compat-premium-product-viewer/playwright.config.ts +14 -0
  123. package/templates/three-compat-premium-product-viewer/src/main.ts +18 -0
  124. package/templates/three-compat-premium-product-viewer/tests/route-health.spec.ts +16 -0
  125. package/templates/three-compat-premium-product-viewer/tests/screenshot.spec.ts +15 -0
  126. package/templates/three-compat-premium-product-viewer/tsconfig.json +19 -0
@@ -1,10 +1,10 @@
1
1
  {
2
- "id": "scene-two-office-workers-arguing-about",
2
+ "id": "scene-two-friends-cooking-dinner-and-g",
3
3
  "duration": 24,
4
4
  "assets": {
5
5
  "characters": [
6
6
  {
7
- "id": "worker-1",
7
+ "id": "friend-1",
8
8
  "url": "/aura-assets/cast-a.catalog.glb",
9
9
  "scale": 1.3,
10
10
  "defaultClip": "idle",
@@ -19,12 +19,12 @@
19
19
  "react"
20
20
  ],
21
21
  "mouthMorphIndex": 0,
22
- "attribution": "\"worker 1\" — curated A-grade humanoid (humanoid-a)",
22
+ "attribution": "\"friend 1\" — curated A-grade humanoid (humanoid-a)",
23
23
  "license": "CC0",
24
24
  "fidelityGrade": "A"
25
25
  },
26
26
  {
27
- "id": "worker-2",
27
+ "id": "friend-2",
28
28
  "url": "/aura-assets/cast-b.catalog.glb",
29
29
  "scale": 1.3,
30
30
  "defaultClip": "idle",
@@ -39,7 +39,7 @@
39
39
  "react"
40
40
  ],
41
41
  "mouthMorphIndex": 0,
42
- "attribution": "\"worker 2\" — curated A-grade humanoid (humanoid-b)",
42
+ "attribution": "\"friend 2\" — curated A-grade humanoid (humanoid-b)",
43
43
  "license": "CC0",
44
44
  "fidelityGrade": "A"
45
45
  }
@@ -48,102 +48,102 @@
48
48
  },
49
49
  "set": {
50
50
  "clearColor": [
51
- 0.62,
52
- 0.66,
53
- 0.72,
51
+ 0.09,
52
+ 0.085,
53
+ 0.08,
54
54
  1
55
55
  ],
56
- "studioLightingScale": 0.6,
56
+ "studioLightingScale": 0.58,
57
57
  "environment": {
58
58
  "color": [
59
- 0.7,
60
- 0.72,
61
- 0.76
59
+ 0.58,
60
+ 0.55,
61
+ 0.5
62
62
  ],
63
- "intensity": 0.55,
63
+ "intensity": 0.46,
64
64
  "proceduralMap": {
65
65
  "skyColor": [
66
- 0.62,
67
- 0.66,
68
- 0.72
66
+ 0.24,
67
+ 0.22,
68
+ 0.2
69
69
  ],
70
70
  "horizonColor": [
71
- 0.5,
72
- 0.53,
73
- 0.58
71
+ 0.3,
72
+ 0.28,
73
+ 0.25
74
74
  ],
75
75
  "groundColor": [
76
- 0.28,
77
- 0.29,
78
- 0.32
76
+ 0.14,
77
+ 0.13,
78
+ 0.12
79
79
  ],
80
80
  "specularColor": [
81
81
  0.9,
82
- 0.92,
83
- 0.96
82
+ 0.86,
83
+ 0.78
84
84
  ],
85
- "intensity": 0.5,
86
- "specularIntensity": 0.5
85
+ "intensity": 0.44,
86
+ "specularIntensity": 0.55
87
87
  },
88
88
  "hdri": {
89
89
  "skyColor": [
90
- 0.7,
91
- 0.74,
92
- 0.8
90
+ 0.66,
91
+ 0.62,
92
+ 0.56
93
93
  ],
94
94
  "horizonColor": [
95
- 0.5,
96
- 0.53,
97
- 0.58
95
+ 0.4,
96
+ 0.37,
97
+ 0.33
98
98
  ],
99
99
  "groundColor": [
100
- 0.24,
101
- 0.25,
102
- 0.28
100
+ 0.16,
101
+ 0.15,
102
+ 0.13
103
103
  ],
104
104
  "sun": {
105
105
  "color": [
106
- 0.95,
107
- 0.97,
108
- 1
106
+ 1,
107
+ 0.93,
108
+ 0.8
109
109
  ],
110
- "intensity": 1.5,
111
- "azimuth": 0.5,
112
- "elevation": 1.05,
110
+ "intensity": 1.7,
111
+ "azimuth": -0.5,
112
+ "elevation": 1,
113
113
  "angularRadius": 0.2
114
114
  },
115
115
  "intensity": 0.6,
116
- "specularIntensity": 0.5
116
+ "specularIntensity": 0.6
117
117
  }
118
118
  },
119
119
  "pieces": [
120
120
  {
121
- "id": "office-cyc-wall",
121
+ "id": "kitchen-cyc-wall",
122
122
  "geometry": "sphere",
123
123
  "position": [
124
124
  0,
125
- 8,
126
- -20
125
+ 6,
126
+ -22
127
127
  ],
128
128
  "scale": [
129
- 70,
130
- 44,
131
- 10
129
+ 56,
130
+ 32,
131
+ 8
132
132
  ],
133
133
  "baseColor": [
134
- 0.66,
135
- 0.69,
136
- 0.74,
134
+ 0.36,
135
+ 0.34,
136
+ 0.32,
137
137
  1
138
138
  ],
139
139
  "metallic": 0.05,
140
- "roughness": 0.9,
140
+ "roughness": 0.85,
141
141
  "emissiveColor": [
142
- 0.5,
143
- 0.53,
144
- 0.58
142
+ 0.22,
143
+ 0.21,
144
+ 0.2
145
145
  ],
146
- "emissiveStrength": 0.7
146
+ "emissiveStrength": 0.44
147
147
  },
148
148
  {
149
149
  "id": "ground-base",
@@ -159,17 +159,17 @@
159
159
  120
160
160
  ],
161
161
  "baseColor": [
162
- 0.26,
163
- 0.27,
164
162
  0.3,
163
+ 0.28,
164
+ 0.26,
165
165
  1
166
166
  ],
167
- "metallic": 0.1,
168
- "roughness": 0.6,
167
+ "metallic": 0.05,
168
+ "roughness": 0.7,
169
169
  "emissiveColor": [
170
- 0.026000000000000002,
171
- 0.027000000000000003,
172
- 0.03
170
+ 0.03,
171
+ 0.028000000000000004,
172
+ 0.026000000000000002
173
173
  ],
174
174
  "emissiveStrength": 0.05,
175
175
  "includeInAutoFrame": true
@@ -188,267 +188,217 @@
188
188
  6
189
189
  ],
190
190
  "baseColor": [
191
- 0.2,
191
+ 0.22,
192
192
  0.21,
193
- 0.24,
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,
193
+ 0.2,
216
194
  1
217
195
  ],
218
196
  "metallic": 0.05,
219
- "roughness": 0.5
197
+ "roughness": 0.75
220
198
  },
221
199
  {
222
- "id": "office-desk-leg-l",
200
+ "id": "kitchen-counter",
223
201
  "geometry": "cube",
224
202
  "position": [
225
- -3.5,
226
- 0.39,
227
- -2
203
+ -1.2,
204
+ 0.45,
205
+ -2.4
228
206
  ],
229
207
  "scale": [
230
- 0.12,
231
- 0.78,
232
- 1
208
+ 4,
209
+ 0.9,
210
+ 0.8
233
211
  ],
234
212
  "baseColor": [
235
- 0.3,
236
- 0.3,
237
- 0.33,
213
+ 0.55,
214
+ 0.5,
215
+ 0.44,
238
216
  1
239
217
  ],
240
- "metallic": 0.4,
241
- "roughness": 0.5
218
+ "metallic": 0.05,
219
+ "roughness": 0.7
242
220
  },
243
221
  {
244
- "id": "office-desk-leg-r",
222
+ "id": "kitchen-worktop",
245
223
  "geometry": "cube",
246
224
  "position": [
247
- -1.3,
248
- 0.39,
249
- -2
225
+ -1.2,
226
+ 0.92,
227
+ -2.4
250
228
  ],
251
229
  "scale": [
252
- 0.12,
253
- 0.78,
254
- 1
230
+ 4.1,
231
+ 0.08,
232
+ 0.85
255
233
  ],
256
234
  "baseColor": [
257
- 0.3,
258
- 0.3,
259
- 0.33,
235
+ 0.18,
236
+ 0.18,
237
+ 0.2,
260
238
  1
261
239
  ],
262
- "metallic": 0.4,
263
- "roughness": 0.5
240
+ "metallic": 0.2,
241
+ "roughness": 0.35
264
242
  },
265
243
  {
266
- "id": "office-monitor-1",
244
+ "id": "kitchen-uppers",
267
245
  "geometry": "cube",
268
246
  "position": [
269
- -2.9,
270
- 1.18,
271
- -2.2
247
+ -1.2,
248
+ 2,
249
+ -2.7
272
250
  ],
273
251
  "scale": [
274
- 0.7,
275
- 0.44,
276
- 0.06
252
+ 3.6,
253
+ 0.8,
254
+ 0.5
277
255
  ],
278
256
  "baseColor": [
279
- 0.08,
280
- 0.09,
281
- 0.1,
257
+ 0.6,
258
+ 0.55,
259
+ 0.48,
282
260
  1
283
261
  ],
284
- "metallic": 0.2,
285
- "roughness": 0.4,
286
- "emissiveColor": [
287
- 0.2,
288
- 0.42,
289
- 0.6
290
- ],
291
- "emissiveStrength": 0.5
262
+ "metallic": 0.05,
263
+ "roughness": 0.7
292
264
  },
293
265
  {
294
- "id": "office-monitor-2",
266
+ "id": "kitchen-sink",
295
267
  "geometry": "cube",
296
268
  "position": [
297
- -1.9,
298
- 1.18,
299
- -2.2
269
+ -2.4,
270
+ 0.9,
271
+ -2.4
300
272
  ],
301
273
  "scale": [
302
274
  0.7,
303
- 0.44,
304
- 0.06
275
+ 0.12,
276
+ 0.5
305
277
  ],
306
278
  "baseColor": [
307
- 0.08,
308
- 0.09,
309
- 0.1,
279
+ 0.62,
280
+ 0.64,
281
+ 0.68,
310
282
  1
311
283
  ],
312
- "metallic": 0.2,
313
- "roughness": 0.4,
314
- "emissiveColor": [
315
- 0.22,
316
- 0.4,
317
- 0.55
318
- ],
319
- "emissiveStrength": 0.5
284
+ "metallic": 0.7,
285
+ "roughness": 0.3
320
286
  },
321
287
  {
322
- "id": "office-partition",
323
- "geometry": "cube",
288
+ "id": "kitchen-faucet",
289
+ "geometry": "cylinder",
324
290
  "position": [
325
- 0.3,
326
- 1,
291
+ -2.4,
292
+ 1.12,
327
293
  -2.6
328
294
  ],
329
295
  "scale": [
330
- 0.12,
331
- 2,
332
- 1.6
333
- ],
334
- "baseColor": [
296
+ 0.05,
335
297
  0.4,
336
- 0.45,
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
298
+ 0.05
355
299
  ],
356
300
  "baseColor": [
357
- 0.7,
358
301
  0.7,
359
302
  0.72,
303
+ 0.76,
360
304
  1
361
305
  ],
362
- "metallic": 0.05,
363
- "roughness": 0.5
306
+ "metallic": 0.8,
307
+ "roughness": 0.2
364
308
  },
365
309
  {
366
- "id": "office-chair-seat",
367
- "geometry": "cylinder",
310
+ "id": "kitchen-stove",
311
+ "geometry": "cube",
368
312
  "position": [
369
- -2.2,
370
- 0.5,
371
- -0.9
313
+ 0.4,
314
+ 0.45,
315
+ -2.4
372
316
  ],
373
317
  "scale": [
374
- 0.5,
375
- 0.12,
376
- 0.5
318
+ 0.9,
319
+ 0.9,
320
+ 0.8
377
321
  ],
378
322
  "baseColor": [
379
- 0.12,
380
- 0.14,
381
- 0.18,
323
+ 0.2,
324
+ 0.2,
325
+ 0.22,
382
326
  1
383
327
  ],
384
- "metallic": 0.1,
385
- "roughness": 0.8
328
+ "metallic": 0.5,
329
+ "roughness": 0.4,
330
+ "emissiveColor": [
331
+ 0.3,
332
+ 0.08,
333
+ 0.04
334
+ ],
335
+ "emissiveStrength": 0.25
386
336
  },
387
337
  {
388
- "id": "office-chair-post",
389
- "geometry": "cylinder",
338
+ "id": "kitchen-hood",
339
+ "geometry": "cube",
390
340
  "position": [
391
- -2.2,
392
- 0.24,
393
- -0.9
341
+ 0.4,
342
+ 1.9,
343
+ -2.6
394
344
  ],
395
345
  "scale": [
396
- 0.1,
397
- 0.5,
398
- 0.1
346
+ 1,
347
+ 0.4,
348
+ 0.6
399
349
  ],
400
350
  "baseColor": [
401
- 0.2,
402
- 0.2,
403
- 0.22,
351
+ 0.55,
352
+ 0.56,
353
+ 0.6,
404
354
  1
405
355
  ],
406
356
  "metallic": 0.6,
407
- "roughness": 0.4
357
+ "roughness": 0.3
408
358
  },
409
359
  {
410
- "id": "office-plant-pot",
411
- "geometry": "cylinder",
360
+ "id": "kitchen-fridge",
361
+ "geometry": "cube",
412
362
  "position": [
413
- 3.4,
414
- 0.3,
415
- -1.2
363
+ 3,
364
+ 1.05,
365
+ -2.3
416
366
  ],
417
367
  "scale": [
418
- 0.3,
419
- 0.6,
420
- 0.3
368
+ 1,
369
+ 2.1,
370
+ 0.8
421
371
  ],
422
372
  "baseColor": [
423
- 0.4,
424
- 0.3,
425
- 0.24,
373
+ 0.78,
374
+ 0.79,
375
+ 0.82,
426
376
  1
427
377
  ],
428
- "metallic": 0,
429
- "roughness": 0.9
378
+ "metallic": 0.5,
379
+ "roughness": 0.3
430
380
  },
431
381
  {
432
- "id": "office-plant-leaves",
433
- "geometry": "sphere",
382
+ "id": "kitchen-island",
383
+ "geometry": "cube",
434
384
  "position": [
435
- 3.4,
436
- 0.95,
437
- -1.2
385
+ 0.6,
386
+ 0.45,
387
+ -0.6
438
388
  ],
439
389
  "scale": [
440
- 0.6,
441
- 0.7,
442
- 0.6
390
+ 1.6,
391
+ 0.9,
392
+ 0.9
443
393
  ],
444
394
  "baseColor": [
445
- 0.16,
395
+ 0.5,
396
+ 0.45,
446
397
  0.4,
447
- 0.18,
448
398
  1
449
399
  ],
450
- "metallic": 0,
451
- "roughness": 0.95
400
+ "metallic": 0.05,
401
+ "roughness": 0.7
452
402
  }
453
403
  ],
454
404
  "lights": [
@@ -456,25 +406,25 @@
456
406
  "id": "key",
457
407
  "kind": "point",
458
408
  "color": [
459
- 0.97,
460
- 0.98,
461
- 1
409
+ 1,
410
+ 0.94,
411
+ 0.84
462
412
  ],
463
413
  "position": [
464
- -2.6,
465
- 3.8,
414
+ -2.4,
415
+ 3.6,
466
416
  3
467
417
  ],
468
418
  "intensity": 4.2,
469
- "range": 19
419
+ "range": 18
470
420
  },
471
421
  {
472
422
  "id": "fill",
473
423
  "kind": "point",
474
424
  "color": [
475
- 0.86,
476
425
  0.9,
477
- 0.96
426
+ 0.9,
427
+ 0.92
478
428
  ],
479
429
  "position": [
480
430
  2.8,
@@ -488,12 +438,12 @@
488
438
  "id": "rim",
489
439
  "kind": "point",
490
440
  "color": [
491
- 0.9,
492
- 0.92,
493
- 1
441
+ 1,
442
+ 0.88,
443
+ 0.72
494
444
  ],
495
445
  "position": [
496
- 0.3,
446
+ 0.4,
497
447
  2.4,
498
448
  -2.6
499
449
  ],
@@ -551,7 +501,7 @@
551
501
  ],
552
502
  "blocking": [
553
503
  {
554
- "characterId": "worker-1",
504
+ "characterId": "friend-1",
555
505
  "shots": [
556
506
  {
557
507
  "shotId": "shot-1",
@@ -579,7 +529,7 @@
579
529
  },
580
530
  {
581
531
  "shotId": "shot-2",
582
- "clip": "talk",
532
+ "clip": "walk",
583
533
  "waypoints": [
584
534
  {
585
535
  "time": 8,
@@ -594,7 +544,7 @@
594
544
  },
595
545
  {
596
546
  "shotId": "shot-3",
597
- "clip": "gesture",
547
+ "clip": "nod",
598
548
  "waypoints": [
599
549
  {
600
550
  "time": 16,
@@ -610,7 +560,7 @@
610
560
  ]
611
561
  },
612
562
  {
613
- "characterId": "worker-2",
563
+ "characterId": "friend-2",
614
564
  "shots": [
615
565
  {
616
566
  "shotId": "shot-1",
@@ -638,7 +588,7 @@
638
588
  },
639
589
  {
640
590
  "shotId": "shot-2",
641
- "clip": "talk",
591
+ "clip": "walk",
642
592
  "waypoints": [
643
593
  {
644
594
  "time": 8,
@@ -678,45 +628,45 @@
678
628
  "lines": [
679
629
  {
680
630
  "lineId": "l0",
681
- "speakerId": "worker-1",
682
- "text": "We are not shipping on Friday.",
683
- "startTime": 0.4,
684
- "endTime": 2.982
631
+ "speakerId": "friend-1",
632
+ "text": "Hey, is the friend ready?",
633
+ "startTime": 0.2,
634
+ "endTime": 2.668
685
635
  },
686
636
  {
687
637
  "lineId": "l1",
688
- "speakerId": "worker-2",
689
- "text": "Yes we are. The login feature is done.",
690
- "startTime": 3.282,
691
- "endTime": 6.991
638
+ "speakerId": "friend-2",
639
+ "text": "Almost! Just give me a second.",
640
+ "startTime": 2.918,
641
+ "endTime": 5.9
692
642
  },
693
643
  {
694
644
  "lineId": "l2",
695
- "speakerId": "worker-1",
696
- "text": "It is not done. The tests are still failing.",
697
- "startTime": 7.291,
698
- "endTime": 11.364
645
+ "speakerId": "friend-1",
646
+ "text": "That is great news.",
647
+ "startTime": 6.15,
648
+ "endTime": 8.005
699
649
  },
700
650
  {
701
651
  "lineId": "l3",
702
- "speakerId": "worker-2",
703
- "text": "Those tests are flaky. We can ignore them.",
704
- "startTime": 11.664,
705
- "endTime": 15.373
652
+ "speakerId": "friend-2",
653
+ "text": "I know, I can NOT wait to show you.",
654
+ "startTime": 8.255,
655
+ "endTime": 12.178
706
656
  },
707
657
  {
708
658
  "lineId": "l4",
709
- "speakerId": "worker-1",
710
- "text": "We are not ignoring failing tests before a release.",
711
- "startTime": 15.673,
712
- "endTime": 19.346
659
+ "speakerId": "friend-1",
660
+ "text": "Come over and let us take a look.",
661
+ "startTime": 12.428,
662
+ "endTime": 15.737
713
663
  },
714
664
  {
715
665
  "lineId": "l5",
716
- "speakerId": "worker-2",
717
- "text": "Fine. Give me one more day and I will fix them.",
718
- "startTime": 19.646,
719
- "endTime": 24
666
+ "speakerId": "friend-2",
667
+ "text": "Here it is, right in front of you.",
668
+ "startTime": 15.987,
669
+ "endTime": 19.546
720
670
  }
721
671
  ]
722
672
  }