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.
- package/dist/cli.js +0 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/package.json +11 -3
- package/templates/animation-channel/package.json +1 -1
- package/templates/animation-channel/tests/screenshot.spec.ts +16 -0
- package/templates/animation-studio/dist/episodes/prompt-to-scene-proof/two-robots-fixing-a-car.document.json +680 -0
- 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 +2021 -2542
- 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/friend-1.png +0 -0
- package/templates/animation-studio/dist/episodes/scene/skeleton-overlays/friend-2.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 -269
- package/templates/animation-studio/index.html +12 -0
- package/templates/animation-studio/node_modules.publish-aside/.vite/deps/_metadata.json +8 -0
- package/templates/animation-studio/node_modules.publish-aside/.vite/deps/package.json +3 -0
- package/templates/animation-studio/package-lock.json +1307 -55
- package/templates/animation-studio/package.json +11 -5
- package/templates/animation-studio/scripts/asset-motion-probe.ts +7 -1
- package/templates/animation-studio/scripts/render-live.ts +24 -0
- package/templates/animation-studio/src/director/prompt-to-scene.ts +73 -5
- package/templates/animation-studio/studio/dist/assets/index-C7f8tHfi.css +1 -0
- package/templates/animation-studio/studio/dist/assets/index-CLo3GXyN.js +43 -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 +498 -0
- package/templates/animation-studio/studio/src/components/Console.tsx +372 -0
- package/templates/animation-studio/studio/src/components/Icon.tsx +90 -0
- package/templates/animation-studio/studio/src/components/Inspector.tsx +265 -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 +344 -0
- package/templates/animation-studio/studio/src/components/Timeline.tsx +230 -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 +430 -0
- package/templates/animation-studio/studio/src/state/sceneTool.ts +66 -0
- package/templates/animation-studio/studio/src/state/types.ts +173 -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/animation-studio/tests/route-health.spec.ts +33 -0
- package/templates/animation-studio/tests/screenshot.spec.ts +30 -0
- package/templates/character-controller/package.json +3 -3
- package/templates/character-controller/src/main.ts +18 -1
- package/templates/cinematic-scene/package.json +1 -1
- package/templates/cinematic-scene/tests/screenshot.spec.ts +3 -1
- package/templates/episode-builder/package.json +1 -1
- package/templates/episode-builder/tests/screenshot.spec.ts +15 -0
- package/templates/fighting-game/package.json +1 -1
- package/templates/fighting-game/tests/screenshot.spec.ts +15 -0
- package/templates/mini-game/package.json +1 -1
- package/templates/product-viewer/package.json +1 -1
- package/templates/product-viewer/tests/screenshot.spec.ts +3 -1
- package/templates/prompt-animation-channel/package.json +1 -1
- package/templates/prompt-animation-channel/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-architecture-interior/index.html +16 -0
- package/templates/three-compat-architecture-interior/package.json +21 -0
- package/templates/three-compat-architecture-interior/playwright.config.ts +14 -0
- package/templates/three-compat-architecture-interior/src/main.ts +27 -0
- package/templates/three-compat-architecture-interior/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-architecture-interior/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-architecture-interior/tsconfig.json +19 -0
- package/templates/three-compat-asset-inspector/index.html +16 -0
- package/templates/three-compat-asset-inspector/package.json +21 -0
- package/templates/three-compat-asset-inspector/playwright.config.ts +14 -0
- package/templates/three-compat-asset-inspector/src/main.ts +17 -0
- package/templates/three-compat-asset-inspector/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-asset-inspector/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-asset-inspector/tsconfig.json +19 -0
- package/templates/three-compat-character-viewer/index.html +16 -0
- package/templates/three-compat-character-viewer/package.json +21 -0
- package/templates/three-compat-character-viewer/playwright.config.ts +14 -0
- package/templates/three-compat-character-viewer/src/main.ts +17 -0
- package/templates/three-compat-character-viewer/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-character-viewer/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-character-viewer/tsconfig.json +19 -0
- package/templates/three-compat-custom-threejs-migration/index.html +16 -0
- package/templates/three-compat-custom-threejs-migration/package.json +21 -0
- package/templates/three-compat-custom-threejs-migration/playwright.config.ts +14 -0
- package/templates/three-compat-custom-threejs-migration/src/main.ts +16 -0
- package/templates/three-compat-custom-threejs-migration/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-custom-threejs-migration/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-custom-threejs-migration/tsconfig.json +19 -0
- package/templates/three-compat-large-scene/index.html +16 -0
- package/templates/three-compat-large-scene/package.json +21 -0
- package/templates/three-compat-large-scene/playwright.config.ts +14 -0
- package/templates/three-compat-large-scene/src/main.ts +31 -0
- package/templates/three-compat-large-scene/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-large-scene/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-large-scene/tsconfig.json +19 -0
- package/templates/three-compat-material-authoring/index.html +16 -0
- package/templates/three-compat-material-authoring/package.json +21 -0
- package/templates/three-compat-material-authoring/playwright.config.ts +14 -0
- package/templates/three-compat-material-authoring/src/main.ts +33 -0
- package/templates/three-compat-material-authoring/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-material-authoring/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-material-authoring/tsconfig.json +19 -0
- package/templates/three-compat-postprocess-scene/index.html +16 -0
- package/templates/three-compat-postprocess-scene/package.json +21 -0
- package/templates/three-compat-postprocess-scene/playwright.config.ts +14 -0
- package/templates/three-compat-postprocess-scene/src/main.ts +17 -0
- package/templates/three-compat-postprocess-scene/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-postprocess-scene/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-postprocess-scene/tsconfig.json +19 -0
- package/templates/three-compat-premium-product-viewer/index.html +16 -0
- package/templates/three-compat-premium-product-viewer/package.json +21 -0
- package/templates/three-compat-premium-product-viewer/playwright.config.ts +14 -0
- package/templates/three-compat-premium-product-viewer/src/main.ts +18 -0
- package/templates/three-compat-premium-product-viewer/tests/route-health.spec.ts +16 -0
- package/templates/three-compat-premium-product-viewer/tests/screenshot.spec.ts +15 -0
- package/templates/three-compat-premium-product-viewer/tsconfig.json +19 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "scene-two-
|
|
2
|
+
"id": "scene-two-friends-cooking-dinner-and-g",
|
|
3
3
|
"duration": 24,
|
|
4
4
|
"assets": {
|
|
5
5
|
"characters": [
|
|
6
6
|
{
|
|
7
|
-
"id": "
|
|
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": "\"
|
|
22
|
+
"attribution": "\"friend 1\" — curated A-grade humanoid (humanoid-a)",
|
|
23
23
|
"license": "CC0",
|
|
24
24
|
"fidelityGrade": "A"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
|
-
"id": "
|
|
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": "\"
|
|
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.
|
|
52
|
-
0.
|
|
53
|
-
0.
|
|
51
|
+
0.09,
|
|
52
|
+
0.085,
|
|
53
|
+
0.08,
|
|
54
54
|
1
|
|
55
55
|
],
|
|
56
|
-
"studioLightingScale": 0.
|
|
56
|
+
"studioLightingScale": 0.58,
|
|
57
57
|
"environment": {
|
|
58
58
|
"color": [
|
|
59
|
-
0.
|
|
60
|
-
0.
|
|
61
|
-
0.
|
|
59
|
+
0.58,
|
|
60
|
+
0.55,
|
|
61
|
+
0.5
|
|
62
62
|
],
|
|
63
|
-
"intensity": 0.
|
|
63
|
+
"intensity": 0.46,
|
|
64
64
|
"proceduralMap": {
|
|
65
65
|
"skyColor": [
|
|
66
|
-
0.
|
|
67
|
-
0.
|
|
68
|
-
0.
|
|
66
|
+
0.24,
|
|
67
|
+
0.22,
|
|
68
|
+
0.2
|
|
69
69
|
],
|
|
70
70
|
"horizonColor": [
|
|
71
|
-
0.
|
|
72
|
-
0.
|
|
73
|
-
0.
|
|
71
|
+
0.3,
|
|
72
|
+
0.28,
|
|
73
|
+
0.25
|
|
74
74
|
],
|
|
75
75
|
"groundColor": [
|
|
76
|
-
0.
|
|
77
|
-
0.
|
|
78
|
-
0.
|
|
76
|
+
0.14,
|
|
77
|
+
0.13,
|
|
78
|
+
0.12
|
|
79
79
|
],
|
|
80
80
|
"specularColor": [
|
|
81
81
|
0.9,
|
|
82
|
-
0.
|
|
83
|
-
0.
|
|
82
|
+
0.86,
|
|
83
|
+
0.78
|
|
84
84
|
],
|
|
85
|
-
"intensity": 0.
|
|
86
|
-
"specularIntensity": 0.
|
|
85
|
+
"intensity": 0.44,
|
|
86
|
+
"specularIntensity": 0.55
|
|
87
87
|
},
|
|
88
88
|
"hdri": {
|
|
89
89
|
"skyColor": [
|
|
90
|
-
0.
|
|
91
|
-
0.
|
|
92
|
-
0.
|
|
90
|
+
0.66,
|
|
91
|
+
0.62,
|
|
92
|
+
0.56
|
|
93
93
|
],
|
|
94
94
|
"horizonColor": [
|
|
95
|
-
0.
|
|
96
|
-
0.
|
|
97
|
-
0.
|
|
95
|
+
0.4,
|
|
96
|
+
0.37,
|
|
97
|
+
0.33
|
|
98
98
|
],
|
|
99
99
|
"groundColor": [
|
|
100
|
-
0.
|
|
101
|
-
0.
|
|
102
|
-
0.
|
|
100
|
+
0.16,
|
|
101
|
+
0.15,
|
|
102
|
+
0.13
|
|
103
103
|
],
|
|
104
104
|
"sun": {
|
|
105
105
|
"color": [
|
|
106
|
-
|
|
107
|
-
0.
|
|
108
|
-
|
|
106
|
+
1,
|
|
107
|
+
0.93,
|
|
108
|
+
0.8
|
|
109
109
|
],
|
|
110
|
-
"intensity": 1.
|
|
111
|
-
"azimuth": 0.5,
|
|
112
|
-
"elevation": 1
|
|
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.
|
|
116
|
+
"specularIntensity": 0.6
|
|
117
117
|
}
|
|
118
118
|
},
|
|
119
119
|
"pieces": [
|
|
120
120
|
{
|
|
121
|
-
"id": "
|
|
121
|
+
"id": "kitchen-cyc-wall",
|
|
122
122
|
"geometry": "sphere",
|
|
123
123
|
"position": [
|
|
124
124
|
0,
|
|
125
|
-
|
|
126
|
-
-
|
|
125
|
+
6,
|
|
126
|
+
-22
|
|
127
127
|
],
|
|
128
128
|
"scale": [
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
56,
|
|
130
|
+
32,
|
|
131
|
+
8
|
|
132
132
|
],
|
|
133
133
|
"baseColor": [
|
|
134
|
-
0.
|
|
135
|
-
0.
|
|
136
|
-
0.
|
|
134
|
+
0.36,
|
|
135
|
+
0.34,
|
|
136
|
+
0.32,
|
|
137
137
|
1
|
|
138
138
|
],
|
|
139
139
|
"metallic": 0.05,
|
|
140
|
-
"roughness": 0.
|
|
140
|
+
"roughness": 0.85,
|
|
141
141
|
"emissiveColor": [
|
|
142
|
-
0.
|
|
143
|
-
0.
|
|
144
|
-
0.
|
|
142
|
+
0.22,
|
|
143
|
+
0.21,
|
|
144
|
+
0.2
|
|
145
145
|
],
|
|
146
|
-
"emissiveStrength": 0.
|
|
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.
|
|
168
|
-
"roughness": 0.
|
|
167
|
+
"metallic": 0.05,
|
|
168
|
+
"roughness": 0.7,
|
|
169
169
|
"emissiveColor": [
|
|
170
|
-
0.
|
|
171
|
-
0.
|
|
172
|
-
0.
|
|
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.
|
|
191
|
+
0.22,
|
|
192
192
|
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,
|
|
193
|
+
0.2,
|
|
216
194
|
1
|
|
217
195
|
],
|
|
218
196
|
"metallic": 0.05,
|
|
219
|
-
"roughness": 0.
|
|
197
|
+
"roughness": 0.75
|
|
220
198
|
},
|
|
221
199
|
{
|
|
222
|
-
"id": "
|
|
200
|
+
"id": "kitchen-counter",
|
|
223
201
|
"geometry": "cube",
|
|
224
202
|
"position": [
|
|
225
|
-
-
|
|
226
|
-
0.
|
|
227
|
-
-2
|
|
203
|
+
-1.2,
|
|
204
|
+
0.45,
|
|
205
|
+
-2.4
|
|
228
206
|
],
|
|
229
207
|
"scale": [
|
|
230
|
-
|
|
231
|
-
0.
|
|
232
|
-
|
|
208
|
+
4,
|
|
209
|
+
0.9,
|
|
210
|
+
0.8
|
|
233
211
|
],
|
|
234
212
|
"baseColor": [
|
|
235
|
-
0.
|
|
236
|
-
0.
|
|
237
|
-
0.
|
|
213
|
+
0.55,
|
|
214
|
+
0.5,
|
|
215
|
+
0.44,
|
|
238
216
|
1
|
|
239
217
|
],
|
|
240
|
-
"metallic": 0.
|
|
241
|
-
"roughness": 0.
|
|
218
|
+
"metallic": 0.05,
|
|
219
|
+
"roughness": 0.7
|
|
242
220
|
},
|
|
243
221
|
{
|
|
244
|
-
"id": "
|
|
222
|
+
"id": "kitchen-worktop",
|
|
245
223
|
"geometry": "cube",
|
|
246
224
|
"position": [
|
|
247
|
-
-1.
|
|
248
|
-
0.
|
|
249
|
-
-2
|
|
225
|
+
-1.2,
|
|
226
|
+
0.92,
|
|
227
|
+
-2.4
|
|
250
228
|
],
|
|
251
229
|
"scale": [
|
|
252
|
-
|
|
253
|
-
0.
|
|
254
|
-
|
|
230
|
+
4.1,
|
|
231
|
+
0.08,
|
|
232
|
+
0.85
|
|
255
233
|
],
|
|
256
234
|
"baseColor": [
|
|
257
|
-
0.
|
|
258
|
-
0.
|
|
259
|
-
0.
|
|
235
|
+
0.18,
|
|
236
|
+
0.18,
|
|
237
|
+
0.2,
|
|
260
238
|
1
|
|
261
239
|
],
|
|
262
|
-
"metallic": 0.
|
|
263
|
-
"roughness": 0.
|
|
240
|
+
"metallic": 0.2,
|
|
241
|
+
"roughness": 0.35
|
|
264
242
|
},
|
|
265
243
|
{
|
|
266
|
-
"id": "
|
|
244
|
+
"id": "kitchen-uppers",
|
|
267
245
|
"geometry": "cube",
|
|
268
246
|
"position": [
|
|
269
|
-
-2
|
|
270
|
-
|
|
271
|
-
-2.
|
|
247
|
+
-1.2,
|
|
248
|
+
2,
|
|
249
|
+
-2.7
|
|
272
250
|
],
|
|
273
251
|
"scale": [
|
|
274
|
-
|
|
275
|
-
0.
|
|
276
|
-
0.
|
|
252
|
+
3.6,
|
|
253
|
+
0.8,
|
|
254
|
+
0.5
|
|
277
255
|
],
|
|
278
256
|
"baseColor": [
|
|
279
|
-
0.
|
|
280
|
-
0.
|
|
281
|
-
0.
|
|
257
|
+
0.6,
|
|
258
|
+
0.55,
|
|
259
|
+
0.48,
|
|
282
260
|
1
|
|
283
261
|
],
|
|
284
|
-
"metallic": 0.
|
|
285
|
-
"roughness": 0.
|
|
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": "
|
|
266
|
+
"id": "kitchen-sink",
|
|
295
267
|
"geometry": "cube",
|
|
296
268
|
"position": [
|
|
297
|
-
-
|
|
298
|
-
|
|
299
|
-
-2.
|
|
269
|
+
-2.4,
|
|
270
|
+
0.9,
|
|
271
|
+
-2.4
|
|
300
272
|
],
|
|
301
273
|
"scale": [
|
|
302
274
|
0.7,
|
|
303
|
-
0.
|
|
304
|
-
0.
|
|
275
|
+
0.12,
|
|
276
|
+
0.5
|
|
305
277
|
],
|
|
306
278
|
"baseColor": [
|
|
307
|
-
0.
|
|
308
|
-
0.
|
|
309
|
-
0.
|
|
279
|
+
0.62,
|
|
280
|
+
0.64,
|
|
281
|
+
0.68,
|
|
310
282
|
1
|
|
311
283
|
],
|
|
312
|
-
"metallic": 0.
|
|
313
|
-
"roughness": 0.
|
|
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": "
|
|
323
|
-
"geometry": "
|
|
288
|
+
"id": "kitchen-faucet",
|
|
289
|
+
"geometry": "cylinder",
|
|
324
290
|
"position": [
|
|
325
|
-
|
|
326
|
-
1,
|
|
291
|
+
-2.4,
|
|
292
|
+
1.12,
|
|
327
293
|
-2.6
|
|
328
294
|
],
|
|
329
295
|
"scale": [
|
|
330
|
-
0.
|
|
331
|
-
2,
|
|
332
|
-
1.6
|
|
333
|
-
],
|
|
334
|
-
"baseColor": [
|
|
296
|
+
0.05,
|
|
335
297
|
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
|
|
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.
|
|
363
|
-
"roughness": 0.
|
|
306
|
+
"metallic": 0.8,
|
|
307
|
+
"roughness": 0.2
|
|
364
308
|
},
|
|
365
309
|
{
|
|
366
|
-
"id": "
|
|
367
|
-
"geometry": "
|
|
310
|
+
"id": "kitchen-stove",
|
|
311
|
+
"geometry": "cube",
|
|
368
312
|
"position": [
|
|
369
|
-
|
|
370
|
-
0.
|
|
371
|
-
-
|
|
313
|
+
0.4,
|
|
314
|
+
0.45,
|
|
315
|
+
-2.4
|
|
372
316
|
],
|
|
373
317
|
"scale": [
|
|
374
|
-
0.
|
|
375
|
-
0.
|
|
376
|
-
0.
|
|
318
|
+
0.9,
|
|
319
|
+
0.9,
|
|
320
|
+
0.8
|
|
377
321
|
],
|
|
378
322
|
"baseColor": [
|
|
379
|
-
0.
|
|
380
|
-
0.
|
|
381
|
-
0.
|
|
323
|
+
0.2,
|
|
324
|
+
0.2,
|
|
325
|
+
0.22,
|
|
382
326
|
1
|
|
383
327
|
],
|
|
384
|
-
"metallic": 0.
|
|
385
|
-
"roughness": 0.
|
|
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": "
|
|
389
|
-
"geometry": "
|
|
338
|
+
"id": "kitchen-hood",
|
|
339
|
+
"geometry": "cube",
|
|
390
340
|
"position": [
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
-
|
|
341
|
+
0.4,
|
|
342
|
+
1.9,
|
|
343
|
+
-2.6
|
|
394
344
|
],
|
|
395
345
|
"scale": [
|
|
396
|
-
|
|
397
|
-
0.
|
|
398
|
-
0.
|
|
346
|
+
1,
|
|
347
|
+
0.4,
|
|
348
|
+
0.6
|
|
399
349
|
],
|
|
400
350
|
"baseColor": [
|
|
401
|
-
0.
|
|
402
|
-
0.
|
|
403
|
-
0.
|
|
351
|
+
0.55,
|
|
352
|
+
0.56,
|
|
353
|
+
0.6,
|
|
404
354
|
1
|
|
405
355
|
],
|
|
406
356
|
"metallic": 0.6,
|
|
407
|
-
"roughness": 0.
|
|
357
|
+
"roughness": 0.3
|
|
408
358
|
},
|
|
409
359
|
{
|
|
410
|
-
"id": "
|
|
411
|
-
"geometry": "
|
|
360
|
+
"id": "kitchen-fridge",
|
|
361
|
+
"geometry": "cube",
|
|
412
362
|
"position": [
|
|
413
|
-
3
|
|
414
|
-
|
|
415
|
-
-
|
|
363
|
+
3,
|
|
364
|
+
1.05,
|
|
365
|
+
-2.3
|
|
416
366
|
],
|
|
417
367
|
"scale": [
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
0.
|
|
368
|
+
1,
|
|
369
|
+
2.1,
|
|
370
|
+
0.8
|
|
421
371
|
],
|
|
422
372
|
"baseColor": [
|
|
423
|
-
0.
|
|
424
|
-
0.
|
|
425
|
-
0.
|
|
373
|
+
0.78,
|
|
374
|
+
0.79,
|
|
375
|
+
0.82,
|
|
426
376
|
1
|
|
427
377
|
],
|
|
428
|
-
"metallic": 0,
|
|
429
|
-
"roughness": 0.
|
|
378
|
+
"metallic": 0.5,
|
|
379
|
+
"roughness": 0.3
|
|
430
380
|
},
|
|
431
381
|
{
|
|
432
|
-
"id": "
|
|
433
|
-
"geometry": "
|
|
382
|
+
"id": "kitchen-island",
|
|
383
|
+
"geometry": "cube",
|
|
434
384
|
"position": [
|
|
435
|
-
|
|
436
|
-
0.
|
|
437
|
-
-
|
|
385
|
+
0.6,
|
|
386
|
+
0.45,
|
|
387
|
+
-0.6
|
|
438
388
|
],
|
|
439
389
|
"scale": [
|
|
440
|
-
|
|
441
|
-
0.
|
|
442
|
-
0.
|
|
390
|
+
1.6,
|
|
391
|
+
0.9,
|
|
392
|
+
0.9
|
|
443
393
|
],
|
|
444
394
|
"baseColor": [
|
|
445
|
-
0.
|
|
395
|
+
0.5,
|
|
396
|
+
0.45,
|
|
446
397
|
0.4,
|
|
447
|
-
0.18,
|
|
448
398
|
1
|
|
449
399
|
],
|
|
450
|
-
"metallic": 0,
|
|
451
|
-
"roughness": 0.
|
|
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
|
-
|
|
460
|
-
0.
|
|
461
|
-
|
|
409
|
+
1,
|
|
410
|
+
0.94,
|
|
411
|
+
0.84
|
|
462
412
|
],
|
|
463
413
|
"position": [
|
|
464
|
-
-2.
|
|
465
|
-
3.
|
|
414
|
+
-2.4,
|
|
415
|
+
3.6,
|
|
466
416
|
3
|
|
467
417
|
],
|
|
468
418
|
"intensity": 4.2,
|
|
469
|
-
"range":
|
|
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.
|
|
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
|
-
|
|
492
|
-
0.
|
|
493
|
-
|
|
441
|
+
1,
|
|
442
|
+
0.88,
|
|
443
|
+
0.72
|
|
494
444
|
],
|
|
495
445
|
"position": [
|
|
496
|
-
0.
|
|
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": "
|
|
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": "
|
|
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": "
|
|
547
|
+
"clip": "nod",
|
|
598
548
|
"waypoints": [
|
|
599
549
|
{
|
|
600
550
|
"time": 16,
|
|
@@ -610,7 +560,7 @@
|
|
|
610
560
|
]
|
|
611
561
|
},
|
|
612
562
|
{
|
|
613
|
-
"characterId": "
|
|
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": "
|
|
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": "
|
|
682
|
-
"text": "
|
|
683
|
-
"startTime": 0.
|
|
684
|
-
"endTime": 2.
|
|
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": "
|
|
689
|
-
"text": "
|
|
690
|
-
"startTime":
|
|
691
|
-
"endTime":
|
|
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": "
|
|
696
|
-
"text": "
|
|
697
|
-
"startTime":
|
|
698
|
-
"endTime":
|
|
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": "
|
|
703
|
-
"text": "
|
|
704
|
-
"startTime":
|
|
705
|
-
"endTime":
|
|
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": "
|
|
710
|
-
"text": "
|
|
711
|
-
"startTime":
|
|
712
|
-
"endTime":
|
|
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": "
|
|
717
|
-
"text": "
|
|
718
|
-
"startTime":
|
|
719
|
-
"endTime":
|
|
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
|
}
|