incanto 0.69.0 → 0.71.0
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/bin/_behaviors-loader.mjs +22 -0
- package/bin/_read-json.mjs +28 -0
- package/bin/incanto-assets.mjs +5 -4
- package/bin/incanto-check.mjs +58 -31
- package/bin/incanto-editor.mjs +128 -5
- package/bin/incanto-env.mjs +3 -2
- package/bin/incanto-feel.mjs +24 -13
- package/bin/incanto-frame.mjs +8 -1
- package/bin/incanto-multiplay.mjs +11 -9
- package/bin/incanto-new.mjs +105 -10
- package/bin/incanto-play.mjs +158 -16
- package/bin/incanto-playtest.mjs +66 -23
- package/bin/incanto-skills.mjs +14 -2
- package/bin/incanto-verify.mjs +121 -102
- package/bin/incanto.mjs +3 -2
- package/dist/2d.d.ts +296 -34
- package/dist/2d.js +4 -4
- package/dist/3d.d.ts +157 -9
- package/dist/3d.js +8 -8
- package/dist/{agent8-CvsfVskX.js → agent8-Cfmd3ar_.js} +61 -8
- package/dist/{audio-player-C0j2k-yB.d.ts → audio-player-L8yccdMP.d.ts} +2 -2
- package/dist/{behavior-rm8vVzu_.d.ts → behavior-Dcz0fr1S.d.ts} +755 -46
- package/dist/{create-game-CwxEDlCm.js → create-game-CH4kt78v.js} +143 -60
- package/dist/{create-game-CvJ1wSRP.js → create-game-LCHBLfA4.js} +98 -48
- package/dist/debug.d.ts +1 -1
- package/dist/debug.js +2 -3
- package/dist/diagnostics-Cu85N3tL.d.ts +12 -0
- package/dist/{editor-switch-CnIOiyNJ.d.ts → editor-switch-CFU9mCec.d.ts} +22 -13
- package/dist/editor.js +1088 -882
- package/dist/env.d.ts +1 -1
- package/dist/env.js +5 -3
- package/dist/{environment-presets-BO-7XoFV.js → environment-presets-99BzP_L-.js} +298 -45
- package/dist/{frame-report-Dlq13Gyj.js → frame-report-D-_7YF2G.js} +1 -1
- package/dist/{gameplay-D1KixWK8.js → gameplay-CNULJvwh.js} +914 -214
- package/dist/gameplay.d.ts +254 -10
- package/dist/gameplay.js +2 -2
- package/dist/{heightmap-CRK0M4jT.js → heightmap-BYgD5Edk.js} +1 -1
- package/dist/index.d.ts +179 -13
- package/dist/index.js +10 -12
- package/dist/json-CfTjpvW8.js +67 -0
- package/dist/{loader-DadV2QCT.d.ts → loader-8-IHvbKD.d.ts} +2 -2
- package/dist/net.d.ts +27 -3
- package/dist/net.js +2 -2
- package/dist/{noise-CGUMx44x.js → noise-D3nPpmFg.js} +1 -1
- package/dist/{physics-2d-CF5yyjbj.js → physics-2d-FhrXUc6B.js} +136 -11
- package/dist/{physics-3d-DbYaEcZy.js → physics-3d-CFEGxBXZ.js} +104 -23
- package/dist/{teardown-CMqFVxO9.js → picking-DVo7fI13.js} +104 -13
- package/dist/react.d.ts +2 -2
- package/dist/react.js +2 -2
- package/dist/{register-DbVArsns.js → register-BYQCBySi.js} +429 -28
- package/dist/{register-mmfugpaQ.js → register-DuVdzxbq.js} +594 -831
- package/dist/{replay-BEHLDcQV.js → replay-DEvp3kyV.js} +224 -14
- package/dist/{replay-BQfkX4x7.d.ts → replay-F7IZHdFR.d.ts} +20 -3
- package/dist/{schema-B6ugCV1Q.d.ts → rng-Bb-IutXB.d.ts} +38 -21
- package/dist/{rng-DP-SR7eg.js → rng-CDOMybym.js} +22 -0
- package/dist/{loader-DZE7B07H.js → save-slots-Bvuh2p_r.js} +4619 -2318
- package/dist/{split-screen-Cg76MCV5.d.ts → split-screen-CIYf1zSf.d.ts} +36 -4
- package/dist/{split-screen-CauMwu6y.js → split-screen-eULetcg-.js} +159 -26
- package/dist/{sprite-animation-CY-mrr1L.js → sprite-animation-CqR2o3SA.js} +39 -8
- package/dist/{src-CYEu-_S9.js → src-_jk0qLsS.js} +2 -17
- package/dist/test-CmN54kWv.js +4264 -0
- package/dist/test.d.ts +639 -30
- package/dist/test.js +3 -3
- package/dist/touch-BnCyPA0G.js +519 -0
- package/dist/vite.d.ts +20 -37
- package/dist/vite.js +177 -7
- package/dist/{webgl-unavailable-Z5_g8x9H.js → webgl-unavailable-C8aDbGmR.js} +44 -0
- package/editor/assets/agent8-yLIEYHbd.js +1 -0
- package/editor/assets/{debug-CMULinBW.js → debug-u31w_yhq.js} +2 -2
- package/editor/assets/index-DK9xMGpW.js +11046 -0
- package/editor/index.html +1 -1
- package/package.json +4 -14
- package/schemas/scene.schema.json +34 -3
- package/skills/incanto-3d-character.md +14 -1
- package/skills/incanto-3d-models.md +12 -0
- package/skills/incanto-assets.md +9 -1
- package/skills/incanto-audio.md +8 -2
- package/skills/incanto-behaviors-and-scripts.md +105 -7
- package/skills/incanto-building-2d-games.md +97 -10
- package/skills/incanto-building-3d-games.md +58 -4
- package/skills/incanto-editor.md +46 -7
- package/skills/incanto-environment.md +19 -1
- package/skills/incanto-game-feel.md +70 -0
- package/skills/incanto-gameplay-behaviors.md +172 -20
- package/skills/incanto-hud.md +142 -7
- package/skills/incanto-localization.md +13 -5
- package/skills/incanto-multiplayer.md +83 -3
- package/skills/incanto-node-reference.md +239 -59
- package/skills/incanto-performance.md +52 -0
- package/skills/incanto-physics-and-input.md +123 -24
- package/skills/incanto-playtesting.md +112 -2
- package/skills/incanto-save-slots.md +217 -7
- package/skills/incanto-scene-json-authoring.md +69 -12
- package/skills/incanto-verifying-your-game.md +207 -10
- package/skills/incanto-web-integration.md +28 -0
- package/skills/incanto-your-first-game.md +3 -1
- package/templates-app/beacon-isle-3d/generate-world.ts +77 -9
- package/templates-app/beacon-isle-3d/package.json +2 -2
- package/templates-app/beacon-isle-3d/src/behaviors.ts +22 -0
- package/templates-app/beacon-isle-3d/src/game.scene.json +143 -600
- package/templates-app/beacon-isle-3d/src/main.ts +11 -1
- package/templates-app/beacon-isle-3d/tsconfig.json +1 -1
- package/templates-app/beacon-isle-3d/verify.ts +3 -1
- package/templates-app/molehill-2d/.incanto/playtest/lost-seed1.json +4277 -0
- package/templates-app/molehill-2d/PROJECT/Context.md +58 -0
- package/templates-app/molehill-2d/PROJECT/Requirements.md +39 -0
- package/templates-app/molehill-2d/PROJECT/Status.md +27 -0
- package/templates-app/molehill-2d/PROJECT/Structure.md +48 -0
- package/templates-app/molehill-2d/docs/project-2d-rules.md +44 -0
- package/templates-app/molehill-2d/index.html +73 -0
- package/templates-app/molehill-2d/package.json +23 -0
- package/templates-app/molehill-2d/src/behaviors.ts +198 -0
- package/templates-app/molehill-2d/src/game.scene.json +1205 -0
- package/templates-app/molehill-2d/src/main.ts +41 -0
- package/templates-app/molehill-2d/tsconfig.json +13 -0
- package/templates-app/molehill-2d/verify.ts +247 -0
- package/templates-app/molehill-2d/vite.config.ts +12 -0
- package/templates-app/platformer-2d/package.json +2 -2
- package/templates-app/platformer-2d/src/game.scene.json +178 -986
- package/templates-app/platformer-2d/src/main.ts +11 -1
- package/templates-app/platformer-2d/tsconfig.json +1 -1
- package/templates-app/star-survivor/package.json +2 -2
- package/templates-app/star-survivor/src/game.scene.json +43 -216
- package/templates-app/star-survivor/src/main.ts +11 -1
- package/templates-app/star-survivor/tsconfig.json +1 -1
- package/templates-app/tps-3d/PROJECT/Context.md +1 -1
- package/templates-app/tps-3d/package.json +2 -2
- package/templates-app/tps-3d/src/behaviors.ts +19 -1
- package/templates-app/tps-3d/src/game.scene.json +66 -263
- package/templates-app/tps-3d/src/main.ts +13 -2
- package/templates-app/tps-3d/tsconfig.json +1 -1
- package/templates-app/village-quest-3d/.incanto/playtest/swapped-seed1.json +1735 -0
- package/templates-app/village-quest-3d/package.json +2 -2
- package/templates-app/village-quest-3d/src/behaviors.ts +42 -4
- package/templates-app/village-quest-3d/src/grove.scene.json +68 -306
- package/templates-app/village-quest-3d/src/main.ts +11 -1
- package/templates-app/village-quest-3d/src/village.scene.json +202 -863
- package/templates-app/village-quest-3d/tsconfig.json +1 -1
- package/templates-app/village-quest-3d/verify.ts +14 -1
- package/dist/duplicate-Dj4L-5AA.js +0 -22
- package/dist/json-CwwhxQgb.js +0 -36
- package/dist/registry-CF70EArN.js +0 -212
- package/dist/rolldown-runtime-D7D4PA-g.js +0 -13
- package/dist/test-D6ISmuFE.js +0 -2383
- package/dist/touch-DEAmqGdf.js +0 -225
- package/editor/assets/agent8-BDvaZMQJ.js +0 -1
- package/editor/assets/index-CZIRr5EL.js +0 -10958
|
@@ -24,33 +24,15 @@
|
|
|
24
24
|
"turbidity": 2,
|
|
25
25
|
"rayleigh": 1.2
|
|
26
26
|
},
|
|
27
|
-
"fog": {
|
|
28
|
-
|
|
29
|
-
"far": 190
|
|
30
|
-
},
|
|
31
|
-
"shadows": {
|
|
32
|
-
"mapSize": 2048,
|
|
33
|
-
"radius": 1.1
|
|
34
|
-
},
|
|
27
|
+
"fog": { "near": 55, "far": 190 },
|
|
28
|
+
"shadows": { "mapSize": 2048, "radius": 1.1 },
|
|
35
29
|
"exposure": 1,
|
|
36
|
-
"ambient": {
|
|
37
|
-
"color": "#e8d5c0",
|
|
38
|
-
"intensity": 0.52
|
|
39
|
-
},
|
|
30
|
+
"ambient": { "color": "#e8d5c0", "intensity": 0.52 },
|
|
40
31
|
"iblIntensity": 0.65,
|
|
41
|
-
"bloom": {
|
|
42
|
-
|
|
43
|
-
"strength": 0.4
|
|
44
|
-
},
|
|
45
|
-
"post": {
|
|
46
|
-
"vignette": 0.22,
|
|
47
|
-
"saturation": 1.1,
|
|
48
|
-
"contrast": 1.03
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"physics": {
|
|
52
|
-
"gravity": [0, -9.81, 0]
|
|
32
|
+
"bloom": { "threshold": 1.35, "strength": 0.4 },
|
|
33
|
+
"post": { "vignette": 0.22, "saturation": 1.1, "contrast": 1.03 }
|
|
53
34
|
},
|
|
35
|
+
"physics": { "gravity": [0, -9.81, 0] },
|
|
54
36
|
"input": {
|
|
55
37
|
"move": {
|
|
56
38
|
"type": "vector2",
|
|
@@ -61,30 +43,11 @@
|
|
|
61
43
|
"right": ["KeyD", "ArrowRight"]
|
|
62
44
|
}
|
|
63
45
|
},
|
|
64
|
-
"jump": {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
},
|
|
68
|
-
"
|
|
69
|
-
"type": "button",
|
|
70
|
-
"keys": ["ShiftLeft", "ShiftRight"]
|
|
71
|
-
},
|
|
72
|
-
"interact": {
|
|
73
|
-
"type": "button",
|
|
74
|
-
"keys": ["KeyE"]
|
|
75
|
-
},
|
|
76
|
-
"attack": {
|
|
77
|
-
"type": "button",
|
|
78
|
-
"keys": ["Mouse0", "KeyF"]
|
|
79
|
-
},
|
|
80
|
-
"restart": {
|
|
81
|
-
"type": "button",
|
|
82
|
-
"keys": ["KeyR"]
|
|
83
|
-
},
|
|
84
|
-
"pause": {
|
|
85
|
-
"type": "button",
|
|
86
|
-
"keys": ["Escape"]
|
|
87
|
-
}
|
|
46
|
+
"jump": { "type": "button", "keys": ["Space"] },
|
|
47
|
+
"sprint": { "type": "button", "keys": ["ShiftLeft", "ShiftRight"] },
|
|
48
|
+
"interact": { "type": "button", "keys": ["KeyE"] },
|
|
49
|
+
"attack": { "type": "button", "keys": ["Mouse0", "KeyF"] },
|
|
50
|
+
"restart": { "type": "button", "keys": ["KeyR"] }
|
|
88
51
|
},
|
|
89
52
|
"assets": {
|
|
90
53
|
"characters/base": {
|
|
@@ -119,9 +82,7 @@
|
|
|
119
82
|
"root": {
|
|
120
83
|
"name": "Game",
|
|
121
84
|
"type": "Node",
|
|
122
|
-
"script": {
|
|
123
|
-
"name": "VillageDirector"
|
|
124
|
-
},
|
|
85
|
+
"script": { "name": "VillageDirector" },
|
|
125
86
|
"children": [
|
|
126
87
|
{
|
|
127
88
|
"name": "Village",
|
|
@@ -132,10 +93,7 @@
|
|
|
132
93
|
"name": "Floor",
|
|
133
94
|
"type": "StaticBody3D",
|
|
134
95
|
"props": {
|
|
135
|
-
"collider": {
|
|
136
|
-
"shape": "box",
|
|
137
|
-
"size": [64, 0.1, 64]
|
|
138
|
-
},
|
|
96
|
+
"collider": { "shape": "box", "size": [64, 0.1, 64] },
|
|
139
97
|
"position": [0, -0.05, 0]
|
|
140
98
|
},
|
|
141
99
|
"children": [
|
|
@@ -145,10 +103,7 @@
|
|
|
145
103
|
"props": {
|
|
146
104
|
"mesh": "box",
|
|
147
105
|
"size": [64, 0.1, 64],
|
|
148
|
-
"material": {
|
|
149
|
-
"color": "#57713f",
|
|
150
|
-
"roughness": 1
|
|
151
|
-
},
|
|
106
|
+
"material": { "color": "#57713f", "roughness": 1 },
|
|
152
107
|
"castShadow": false,
|
|
153
108
|
"receiveShadow": true
|
|
154
109
|
}
|
|
@@ -161,10 +116,7 @@
|
|
|
161
116
|
"props": {
|
|
162
117
|
"mesh": "box",
|
|
163
118
|
"size": [3, 0.12, 40],
|
|
164
|
-
"material": {
|
|
165
|
-
"color": "#9b8459",
|
|
166
|
-
"roughness": 1
|
|
167
|
-
},
|
|
119
|
+
"material": { "color": "#9b8459", "roughness": 1 },
|
|
168
120
|
"castShadow": false,
|
|
169
121
|
"receiveShadow": true,
|
|
170
122
|
"position": [0, 0.01, -4]
|
|
@@ -176,10 +128,7 @@
|
|
|
176
128
|
"props": {
|
|
177
129
|
"mesh": "cylinder",
|
|
178
130
|
"size": [5.4, 0.12, 5.4],
|
|
179
|
-
"material": {
|
|
180
|
-
"color": "#a68d63",
|
|
181
|
-
"roughness": 1
|
|
182
|
-
},
|
|
131
|
+
"material": { "color": "#a68d63", "roughness": 1 },
|
|
183
132
|
"castShadow": false,
|
|
184
133
|
"receiveShadow": true,
|
|
185
134
|
"position": [1.5, 0.015, 6]
|
|
@@ -191,11 +140,7 @@
|
|
|
191
140
|
"props": {
|
|
192
141
|
"mesh": "gem",
|
|
193
142
|
"size": [0.11, 0.07, 0.09],
|
|
194
|
-
"material": {
|
|
195
|
-
"color": "#8d939c",
|
|
196
|
-
"roughness": 0.95,
|
|
197
|
-
"flatShading": true
|
|
198
|
-
},
|
|
143
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
199
144
|
"transforms": [
|
|
200
145
|
[-1.81, 0.05, -24.15, -168, 0.8],
|
|
201
146
|
[1.87, 0.05, -24.3, -107, 1.04],
|
|
@@ -233,10 +178,7 @@
|
|
|
233
178
|
"name": "House1",
|
|
234
179
|
"type": "StaticBody3D",
|
|
235
180
|
"props": {
|
|
236
|
-
"collider": {
|
|
237
|
-
"shape": "box",
|
|
238
|
-
"size": [6, 3.4, 5]
|
|
239
|
-
},
|
|
181
|
+
"collider": { "shape": "box", "size": [6, 3.4, 5] },
|
|
240
182
|
"position": [-10, 1.7, 2],
|
|
241
183
|
"rotation": [0, 8, 0]
|
|
242
184
|
},
|
|
@@ -247,10 +189,7 @@
|
|
|
247
189
|
"props": {
|
|
248
190
|
"mesh": "box",
|
|
249
191
|
"size": [6, 3.4, 5],
|
|
250
|
-
"material": {
|
|
251
|
-
"color": "#d8c9a8",
|
|
252
|
-
"roughness": 0.9
|
|
253
|
-
},
|
|
192
|
+
"material": { "color": "#d8c9a8", "roughness": 0.9 },
|
|
254
193
|
"castShadow": true,
|
|
255
194
|
"receiveShadow": true
|
|
256
195
|
}
|
|
@@ -261,10 +200,7 @@
|
|
|
261
200
|
"props": {
|
|
262
201
|
"mesh": "box",
|
|
263
202
|
"size": [6, 1.7, 2.8],
|
|
264
|
-
"material": {
|
|
265
|
-
"color": "#d8c9a8",
|
|
266
|
-
"roughness": 0.9
|
|
267
|
-
},
|
|
203
|
+
"material": { "color": "#d8c9a8", "roughness": 0.9 },
|
|
268
204
|
"castShadow": true,
|
|
269
205
|
"receiveShadow": true,
|
|
270
206
|
"position": [0, 2.55, 0]
|
|
@@ -276,10 +212,7 @@
|
|
|
276
212
|
"props": {
|
|
277
213
|
"mesh": "box",
|
|
278
214
|
"size": [0.24, 3.4, 0.24],
|
|
279
|
-
"material": {
|
|
280
|
-
"color": "#54402c",
|
|
281
|
-
"roughness": 0.85
|
|
282
|
-
},
|
|
215
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
283
216
|
"castShadow": true,
|
|
284
217
|
"receiveShadow": true,
|
|
285
218
|
"position": [-2.99, 0, -2.49]
|
|
@@ -291,10 +224,7 @@
|
|
|
291
224
|
"props": {
|
|
292
225
|
"mesh": "box",
|
|
293
226
|
"size": [0.24, 3.4, 0.24],
|
|
294
|
-
"material": {
|
|
295
|
-
"color": "#54402c",
|
|
296
|
-
"roughness": 0.85
|
|
297
|
-
},
|
|
227
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
298
228
|
"castShadow": true,
|
|
299
229
|
"receiveShadow": true,
|
|
300
230
|
"position": [-2.99, 0, 2.49]
|
|
@@ -306,10 +236,7 @@
|
|
|
306
236
|
"props": {
|
|
307
237
|
"mesh": "box",
|
|
308
238
|
"size": [0.24, 3.4, 0.24],
|
|
309
|
-
"material": {
|
|
310
|
-
"color": "#54402c",
|
|
311
|
-
"roughness": 0.85
|
|
312
|
-
},
|
|
239
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
313
240
|
"castShadow": true,
|
|
314
241
|
"receiveShadow": true,
|
|
315
242
|
"position": [2.99, 0, -2.49]
|
|
@@ -321,10 +248,7 @@
|
|
|
321
248
|
"props": {
|
|
322
249
|
"mesh": "box",
|
|
323
250
|
"size": [0.24, 3.4, 0.24],
|
|
324
|
-
"material": {
|
|
325
|
-
"color": "#54402c",
|
|
326
|
-
"roughness": 0.85
|
|
327
|
-
},
|
|
251
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
328
252
|
"castShadow": true,
|
|
329
253
|
"receiveShadow": true,
|
|
330
254
|
"position": [2.99, 0, 2.49]
|
|
@@ -336,10 +260,7 @@
|
|
|
336
260
|
"props": {
|
|
337
261
|
"mesh": "box",
|
|
338
262
|
"size": [6.06, 0.22, 0.26],
|
|
339
|
-
"material": {
|
|
340
|
-
"color": "#54402c",
|
|
341
|
-
"roughness": 0.85
|
|
342
|
-
},
|
|
263
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
343
264
|
"castShadow": true,
|
|
344
265
|
"receiveShadow": true,
|
|
345
266
|
"position": [0, 1.5899999999999999, -2.48]
|
|
@@ -351,10 +272,7 @@
|
|
|
351
272
|
"props": {
|
|
352
273
|
"mesh": "box",
|
|
353
274
|
"size": [6.06, 0.22, 0.26],
|
|
354
|
-
"material": {
|
|
355
|
-
"color": "#54402c",
|
|
356
|
-
"roughness": 0.85
|
|
357
|
-
},
|
|
275
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
358
276
|
"castShadow": true,
|
|
359
277
|
"receiveShadow": true,
|
|
360
278
|
"position": [0, 1.5899999999999999, 2.48]
|
|
@@ -366,11 +284,7 @@
|
|
|
366
284
|
"props": {
|
|
367
285
|
"mesh": "box",
|
|
368
286
|
"size": [6.9, 0.16, 3.55],
|
|
369
|
-
"material": {
|
|
370
|
-
"color": "#b06a45",
|
|
371
|
-
"roughness": 0.85,
|
|
372
|
-
"flatShading": true
|
|
373
|
-
},
|
|
287
|
+
"material": { "color": "#b06a45", "roughness": 0.85, "flatShading": true },
|
|
374
288
|
"castShadow": true,
|
|
375
289
|
"receiveShadow": true,
|
|
376
290
|
"position": [0, 2.55, -1.475],
|
|
@@ -383,11 +297,7 @@
|
|
|
383
297
|
"props": {
|
|
384
298
|
"mesh": "box",
|
|
385
299
|
"size": [6.9, 0.16, 3.55],
|
|
386
|
-
"material": {
|
|
387
|
-
"color": "#b06a45",
|
|
388
|
-
"roughness": 0.85,
|
|
389
|
-
"flatShading": true
|
|
390
|
-
},
|
|
300
|
+
"material": { "color": "#b06a45", "roughness": 0.85, "flatShading": true },
|
|
391
301
|
"castShadow": true,
|
|
392
302
|
"receiveShadow": true,
|
|
393
303
|
"position": [0, 2.55, 1.475],
|
|
@@ -400,10 +310,7 @@
|
|
|
400
310
|
"props": {
|
|
401
311
|
"mesh": "box",
|
|
402
312
|
"size": [7, 0.2, 0.3],
|
|
403
|
-
"material": {
|
|
404
|
-
"color": "#54402c",
|
|
405
|
-
"roughness": 0.85
|
|
406
|
-
},
|
|
313
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
407
314
|
"castShadow": true,
|
|
408
315
|
"receiveShadow": true,
|
|
409
316
|
"position": [0, 3.42, 0]
|
|
@@ -415,11 +322,7 @@
|
|
|
415
322
|
"props": {
|
|
416
323
|
"mesh": "box",
|
|
417
324
|
"size": [0.55, 2.8, 0.55],
|
|
418
|
-
"material": {
|
|
419
|
-
"color": "#8d939c",
|
|
420
|
-
"roughness": 0.95,
|
|
421
|
-
"flatShading": true
|
|
422
|
-
},
|
|
325
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
423
326
|
"castShadow": true,
|
|
424
327
|
"receiveShadow": true,
|
|
425
328
|
"position": [2.2, 2.8999999999999995, 0.8999999999999999]
|
|
@@ -452,10 +355,7 @@
|
|
|
452
355
|
"props": {
|
|
453
356
|
"mesh": "box",
|
|
454
357
|
"size": [1.16, 2.26, 0.1],
|
|
455
|
-
"material": {
|
|
456
|
-
"color": "#54402c",
|
|
457
|
-
"roughness": 0.85
|
|
458
|
-
},
|
|
358
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
459
359
|
"castShadow": true,
|
|
460
360
|
"receiveShadow": true,
|
|
461
361
|
"position": [3.02, -0.5999999999999999, 0.9],
|
|
@@ -468,10 +368,7 @@
|
|
|
468
368
|
"props": {
|
|
469
369
|
"mesh": "box",
|
|
470
370
|
"size": [0.92, 2.05, 0.12],
|
|
471
|
-
"material": {
|
|
472
|
-
"color": "#6b533a",
|
|
473
|
-
"roughness": 0.85
|
|
474
|
-
},
|
|
371
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
475
372
|
"castShadow": true,
|
|
476
373
|
"receiveShadow": true,
|
|
477
374
|
"position": [3.06, -0.6499999999999999, 0.9],
|
|
@@ -484,11 +381,7 @@
|
|
|
484
381
|
"props": {
|
|
485
382
|
"mesh": "box",
|
|
486
383
|
"size": [1.3, 0.16, 0.7],
|
|
487
|
-
"material": {
|
|
488
|
-
"color": "#8d939c",
|
|
489
|
-
"roughness": 0.95,
|
|
490
|
-
"flatShading": true
|
|
491
|
-
},
|
|
384
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
492
385
|
"castShadow": true,
|
|
493
386
|
"receiveShadow": true,
|
|
494
387
|
"position": [3.36, -1.6199999999999999, 0.9],
|
|
@@ -501,10 +394,7 @@
|
|
|
501
394
|
"props": {
|
|
502
395
|
"mesh": "box",
|
|
503
396
|
"size": [0.94, 1.04, 0.08],
|
|
504
|
-
"material": {
|
|
505
|
-
"color": "#54402c",
|
|
506
|
-
"roughness": 0.85
|
|
507
|
-
},
|
|
397
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
508
398
|
"castShadow": true,
|
|
509
399
|
"receiveShadow": true,
|
|
510
400
|
"position": [3.02, 0.28, -0.95],
|
|
@@ -535,10 +425,7 @@
|
|
|
535
425
|
"props": {
|
|
536
426
|
"mesh": "box",
|
|
537
427
|
"size": [0.94, 1.04, 0.08],
|
|
538
|
-
"material": {
|
|
539
|
-
"color": "#54402c",
|
|
540
|
-
"roughness": 0.85
|
|
541
|
-
},
|
|
428
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
542
429
|
"castShadow": true,
|
|
543
430
|
"receiveShadow": true,
|
|
544
431
|
"position": [3.02, 0.28, -2],
|
|
@@ -569,10 +456,7 @@
|
|
|
569
456
|
"name": "House2",
|
|
570
457
|
"type": "StaticBody3D",
|
|
571
458
|
"props": {
|
|
572
|
-
"collider": {
|
|
573
|
-
"shape": "box",
|
|
574
|
-
"size": [5, 3, 6]
|
|
575
|
-
},
|
|
459
|
+
"collider": { "shape": "box", "size": [5, 3, 6] },
|
|
576
460
|
"position": [11, 1.5, -2],
|
|
577
461
|
"rotation": [0, -6, 0]
|
|
578
462
|
},
|
|
@@ -583,10 +467,7 @@
|
|
|
583
467
|
"props": {
|
|
584
468
|
"mesh": "box",
|
|
585
469
|
"size": [5, 3, 6],
|
|
586
|
-
"material": {
|
|
587
|
-
"color": "#cfc2a2",
|
|
588
|
-
"roughness": 0.9
|
|
589
|
-
},
|
|
470
|
+
"material": { "color": "#cfc2a2", "roughness": 0.9 },
|
|
590
471
|
"castShadow": true,
|
|
591
472
|
"receiveShadow": true
|
|
592
473
|
}
|
|
@@ -597,10 +478,7 @@
|
|
|
597
478
|
"props": {
|
|
598
479
|
"mesh": "box",
|
|
599
480
|
"size": [5, 1.7, 3.36],
|
|
600
|
-
"material": {
|
|
601
|
-
"color": "#cfc2a2",
|
|
602
|
-
"roughness": 0.9
|
|
603
|
-
},
|
|
481
|
+
"material": { "color": "#cfc2a2", "roughness": 0.9 },
|
|
604
482
|
"castShadow": true,
|
|
605
483
|
"receiveShadow": true,
|
|
606
484
|
"position": [0, 2.35, 0]
|
|
@@ -612,10 +490,7 @@
|
|
|
612
490
|
"props": {
|
|
613
491
|
"mesh": "box",
|
|
614
492
|
"size": [0.24, 3, 0.24],
|
|
615
|
-
"material": {
|
|
616
|
-
"color": "#54402c",
|
|
617
|
-
"roughness": 0.85
|
|
618
|
-
},
|
|
493
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
619
494
|
"castShadow": true,
|
|
620
495
|
"receiveShadow": true,
|
|
621
496
|
"position": [-2.49, 0, -2.99]
|
|
@@ -627,10 +502,7 @@
|
|
|
627
502
|
"props": {
|
|
628
503
|
"mesh": "box",
|
|
629
504
|
"size": [0.24, 3, 0.24],
|
|
630
|
-
"material": {
|
|
631
|
-
"color": "#54402c",
|
|
632
|
-
"roughness": 0.85
|
|
633
|
-
},
|
|
505
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
634
506
|
"castShadow": true,
|
|
635
507
|
"receiveShadow": true,
|
|
636
508
|
"position": [-2.49, 0, 2.99]
|
|
@@ -642,10 +514,7 @@
|
|
|
642
514
|
"props": {
|
|
643
515
|
"mesh": "box",
|
|
644
516
|
"size": [0.24, 3, 0.24],
|
|
645
|
-
"material": {
|
|
646
|
-
"color": "#54402c",
|
|
647
|
-
"roughness": 0.85
|
|
648
|
-
},
|
|
517
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
649
518
|
"castShadow": true,
|
|
650
519
|
"receiveShadow": true,
|
|
651
520
|
"position": [2.49, 0, -2.99]
|
|
@@ -657,10 +526,7 @@
|
|
|
657
526
|
"props": {
|
|
658
527
|
"mesh": "box",
|
|
659
528
|
"size": [0.24, 3, 0.24],
|
|
660
|
-
"material": {
|
|
661
|
-
"color": "#54402c",
|
|
662
|
-
"roughness": 0.85
|
|
663
|
-
},
|
|
529
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
664
530
|
"castShadow": true,
|
|
665
531
|
"receiveShadow": true,
|
|
666
532
|
"position": [2.49, 0, 2.99]
|
|
@@ -672,10 +538,7 @@
|
|
|
672
538
|
"props": {
|
|
673
539
|
"mesh": "box",
|
|
674
540
|
"size": [5.06, 0.22, 0.26],
|
|
675
|
-
"material": {
|
|
676
|
-
"color": "#54402c",
|
|
677
|
-
"roughness": 0.85
|
|
678
|
-
},
|
|
541
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
679
542
|
"castShadow": true,
|
|
680
543
|
"receiveShadow": true,
|
|
681
544
|
"position": [0, 1.39, -2.98]
|
|
@@ -687,10 +550,7 @@
|
|
|
687
550
|
"props": {
|
|
688
551
|
"mesh": "box",
|
|
689
552
|
"size": [5.06, 0.22, 0.26],
|
|
690
|
-
"material": {
|
|
691
|
-
"color": "#54402c",
|
|
692
|
-
"roughness": 0.85
|
|
693
|
-
},
|
|
553
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
694
554
|
"castShadow": true,
|
|
695
555
|
"receiveShadow": true,
|
|
696
556
|
"position": [0, 1.39, 2.98]
|
|
@@ -702,11 +562,7 @@
|
|
|
702
562
|
"props": {
|
|
703
563
|
"mesh": "box",
|
|
704
564
|
"size": [5.9, 0.16, 4],
|
|
705
|
-
"material": {
|
|
706
|
-
"color": "#8a4f38",
|
|
707
|
-
"roughness": 0.85,
|
|
708
|
-
"flatShading": true
|
|
709
|
-
},
|
|
565
|
+
"material": { "color": "#8a4f38", "roughness": 0.85, "flatShading": true },
|
|
710
566
|
"castShadow": true,
|
|
711
567
|
"receiveShadow": true,
|
|
712
568
|
"position": [0, 2.35, -1.725],
|
|
@@ -719,11 +575,7 @@
|
|
|
719
575
|
"props": {
|
|
720
576
|
"mesh": "box",
|
|
721
577
|
"size": [5.9, 0.16, 4],
|
|
722
|
-
"material": {
|
|
723
|
-
"color": "#8a4f38",
|
|
724
|
-
"roughness": 0.85,
|
|
725
|
-
"flatShading": true
|
|
726
|
-
},
|
|
578
|
+
"material": { "color": "#8a4f38", "roughness": 0.85, "flatShading": true },
|
|
727
579
|
"castShadow": true,
|
|
728
580
|
"receiveShadow": true,
|
|
729
581
|
"position": [0, 2.35, 1.725],
|
|
@@ -736,10 +588,7 @@
|
|
|
736
588
|
"props": {
|
|
737
589
|
"mesh": "box",
|
|
738
590
|
"size": [6, 0.2, 0.3],
|
|
739
|
-
"material": {
|
|
740
|
-
"color": "#54402c",
|
|
741
|
-
"roughness": 0.85
|
|
742
|
-
},
|
|
591
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
743
592
|
"castShadow": true,
|
|
744
593
|
"receiveShadow": true,
|
|
745
594
|
"position": [0, 3.22, 0]
|
|
@@ -751,11 +600,7 @@
|
|
|
751
600
|
"props": {
|
|
752
601
|
"mesh": "box",
|
|
753
602
|
"size": [0.55, 2.8, 0.55],
|
|
754
|
-
"material": {
|
|
755
|
-
"color": "#8d939c",
|
|
756
|
-
"roughness": 0.95,
|
|
757
|
-
"flatShading": true
|
|
758
|
-
},
|
|
603
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
759
604
|
"castShadow": true,
|
|
760
605
|
"receiveShadow": true,
|
|
761
606
|
"position": [1.7, 2.6999999999999997, 1.08]
|
|
@@ -788,10 +633,7 @@
|
|
|
788
633
|
"props": {
|
|
789
634
|
"mesh": "box",
|
|
790
635
|
"size": [1.16, 2.26, 0.1],
|
|
791
|
-
"material": {
|
|
792
|
-
"color": "#54402c",
|
|
793
|
-
"roughness": 0.85
|
|
794
|
-
},
|
|
636
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
795
637
|
"castShadow": true,
|
|
796
638
|
"receiveShadow": true,
|
|
797
639
|
"position": [-2.52, -0.39999999999999997, 0.9],
|
|
@@ -804,10 +646,7 @@
|
|
|
804
646
|
"props": {
|
|
805
647
|
"mesh": "box",
|
|
806
648
|
"size": [0.92, 2.05, 0.12],
|
|
807
|
-
"material": {
|
|
808
|
-
"color": "#6b533a",
|
|
809
|
-
"roughness": 0.85
|
|
810
|
-
},
|
|
649
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
811
650
|
"castShadow": true,
|
|
812
651
|
"receiveShadow": true,
|
|
813
652
|
"position": [-2.56, -0.44999999999999996, 0.9],
|
|
@@ -820,11 +659,7 @@
|
|
|
820
659
|
"props": {
|
|
821
660
|
"mesh": "box",
|
|
822
661
|
"size": [1.3, 0.16, 0.7],
|
|
823
|
-
"material": {
|
|
824
|
-
"color": "#8d939c",
|
|
825
|
-
"roughness": 0.95,
|
|
826
|
-
"flatShading": true
|
|
827
|
-
},
|
|
662
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
828
663
|
"castShadow": true,
|
|
829
664
|
"receiveShadow": true,
|
|
830
665
|
"position": [-2.86, -1.42, 0.9],
|
|
@@ -837,10 +672,7 @@
|
|
|
837
672
|
"props": {
|
|
838
673
|
"mesh": "box",
|
|
839
674
|
"size": [0.94, 1.04, 0.08],
|
|
840
|
-
"material": {
|
|
841
|
-
"color": "#54402c",
|
|
842
|
-
"roughness": 0.85
|
|
843
|
-
},
|
|
675
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
844
676
|
"castShadow": true,
|
|
845
677
|
"receiveShadow": true,
|
|
846
678
|
"position": [-2.52, 0.28, -0.95],
|
|
@@ -871,10 +703,7 @@
|
|
|
871
703
|
"props": {
|
|
872
704
|
"mesh": "box",
|
|
873
705
|
"size": [0.94, 1.04, 0.08],
|
|
874
|
-
"material": {
|
|
875
|
-
"color": "#54402c",
|
|
876
|
-
"roughness": 0.85
|
|
877
|
-
},
|
|
706
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
878
707
|
"castShadow": true,
|
|
879
708
|
"receiveShadow": true,
|
|
880
709
|
"position": [-2.52, 0.28, -2],
|
|
@@ -905,10 +734,7 @@
|
|
|
905
734
|
"name": "House3",
|
|
906
735
|
"type": "StaticBody3D",
|
|
907
736
|
"props": {
|
|
908
|
-
"collider": {
|
|
909
|
-
"shape": "box",
|
|
910
|
-
"size": [5.4, 3.1, 5]
|
|
911
|
-
},
|
|
737
|
+
"collider": { "shape": "box", "size": [5.4, 3.1, 5] },
|
|
912
738
|
"position": [-13, 1.55, -13],
|
|
913
739
|
"rotation": [0, 24, 0]
|
|
914
740
|
},
|
|
@@ -919,10 +745,7 @@
|
|
|
919
745
|
"props": {
|
|
920
746
|
"mesh": "box",
|
|
921
747
|
"size": [5.4, 3.1, 5],
|
|
922
|
-
"material": {
|
|
923
|
-
"color": "#e0d2b4",
|
|
924
|
-
"roughness": 0.9
|
|
925
|
-
},
|
|
748
|
+
"material": { "color": "#e0d2b4", "roughness": 0.9 },
|
|
926
749
|
"castShadow": true,
|
|
927
750
|
"receiveShadow": true
|
|
928
751
|
}
|
|
@@ -933,10 +756,7 @@
|
|
|
933
756
|
"props": {
|
|
934
757
|
"mesh": "box",
|
|
935
758
|
"size": [5.4, 1.7, 2.8],
|
|
936
|
-
"material": {
|
|
937
|
-
"color": "#e0d2b4",
|
|
938
|
-
"roughness": 0.9
|
|
939
|
-
},
|
|
759
|
+
"material": { "color": "#e0d2b4", "roughness": 0.9 },
|
|
940
760
|
"castShadow": true,
|
|
941
761
|
"receiveShadow": true,
|
|
942
762
|
"position": [0, 2.4, 0]
|
|
@@ -948,10 +768,7 @@
|
|
|
948
768
|
"props": {
|
|
949
769
|
"mesh": "box",
|
|
950
770
|
"size": [0.24, 3.1, 0.24],
|
|
951
|
-
"material": {
|
|
952
|
-
"color": "#54402c",
|
|
953
|
-
"roughness": 0.85
|
|
954
|
-
},
|
|
771
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
955
772
|
"castShadow": true,
|
|
956
773
|
"receiveShadow": true,
|
|
957
774
|
"position": [-2.6900000000000004, 0, -2.49]
|
|
@@ -963,10 +780,7 @@
|
|
|
963
780
|
"props": {
|
|
964
781
|
"mesh": "box",
|
|
965
782
|
"size": [0.24, 3.1, 0.24],
|
|
966
|
-
"material": {
|
|
967
|
-
"color": "#54402c",
|
|
968
|
-
"roughness": 0.85
|
|
969
|
-
},
|
|
783
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
970
784
|
"castShadow": true,
|
|
971
785
|
"receiveShadow": true,
|
|
972
786
|
"position": [-2.6900000000000004, 0, 2.49]
|
|
@@ -978,10 +792,7 @@
|
|
|
978
792
|
"props": {
|
|
979
793
|
"mesh": "box",
|
|
980
794
|
"size": [0.24, 3.1, 0.24],
|
|
981
|
-
"material": {
|
|
982
|
-
"color": "#54402c",
|
|
983
|
-
"roughness": 0.85
|
|
984
|
-
},
|
|
795
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
985
796
|
"castShadow": true,
|
|
986
797
|
"receiveShadow": true,
|
|
987
798
|
"position": [2.6900000000000004, 0, -2.49]
|
|
@@ -993,10 +804,7 @@
|
|
|
993
804
|
"props": {
|
|
994
805
|
"mesh": "box",
|
|
995
806
|
"size": [0.24, 3.1, 0.24],
|
|
996
|
-
"material": {
|
|
997
|
-
"color": "#54402c",
|
|
998
|
-
"roughness": 0.85
|
|
999
|
-
},
|
|
807
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1000
808
|
"castShadow": true,
|
|
1001
809
|
"receiveShadow": true,
|
|
1002
810
|
"position": [2.6900000000000004, 0, 2.49]
|
|
@@ -1008,10 +816,7 @@
|
|
|
1008
816
|
"props": {
|
|
1009
817
|
"mesh": "box",
|
|
1010
818
|
"size": [5.46, 0.22, 0.26],
|
|
1011
|
-
"material": {
|
|
1012
|
-
"color": "#54402c",
|
|
1013
|
-
"roughness": 0.85
|
|
1014
|
-
},
|
|
819
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1015
820
|
"castShadow": true,
|
|
1016
821
|
"receiveShadow": true,
|
|
1017
822
|
"position": [0, 1.44, -2.48]
|
|
@@ -1023,10 +828,7 @@
|
|
|
1023
828
|
"props": {
|
|
1024
829
|
"mesh": "box",
|
|
1025
830
|
"size": [5.46, 0.22, 0.26],
|
|
1026
|
-
"material": {
|
|
1027
|
-
"color": "#54402c",
|
|
1028
|
-
"roughness": 0.85
|
|
1029
|
-
},
|
|
831
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1030
832
|
"castShadow": true,
|
|
1031
833
|
"receiveShadow": true,
|
|
1032
834
|
"position": [0, 1.44, 2.48]
|
|
@@ -1038,11 +840,7 @@
|
|
|
1038
840
|
"props": {
|
|
1039
841
|
"mesh": "box",
|
|
1040
842
|
"size": [6.3, 0.16, 3.55],
|
|
1041
|
-
"material": {
|
|
1042
|
-
"color": "#6a6f7a",
|
|
1043
|
-
"roughness": 0.85,
|
|
1044
|
-
"flatShading": true
|
|
1045
|
-
},
|
|
843
|
+
"material": { "color": "#6a6f7a", "roughness": 0.85, "flatShading": true },
|
|
1046
844
|
"castShadow": true,
|
|
1047
845
|
"receiveShadow": true,
|
|
1048
846
|
"position": [0, 2.4, -1.475],
|
|
@@ -1055,11 +853,7 @@
|
|
|
1055
853
|
"props": {
|
|
1056
854
|
"mesh": "box",
|
|
1057
855
|
"size": [6.3, 0.16, 3.55],
|
|
1058
|
-
"material": {
|
|
1059
|
-
"color": "#6a6f7a",
|
|
1060
|
-
"roughness": 0.85,
|
|
1061
|
-
"flatShading": true
|
|
1062
|
-
},
|
|
856
|
+
"material": { "color": "#6a6f7a", "roughness": 0.85, "flatShading": true },
|
|
1063
857
|
"castShadow": true,
|
|
1064
858
|
"receiveShadow": true,
|
|
1065
859
|
"position": [0, 2.4, 1.475],
|
|
@@ -1072,10 +866,7 @@
|
|
|
1072
866
|
"props": {
|
|
1073
867
|
"mesh": "box",
|
|
1074
868
|
"size": [6.4, 0.2, 0.3],
|
|
1075
|
-
"material": {
|
|
1076
|
-
"color": "#54402c",
|
|
1077
|
-
"roughness": 0.85
|
|
1078
|
-
},
|
|
869
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1079
870
|
"castShadow": true,
|
|
1080
871
|
"receiveShadow": true,
|
|
1081
872
|
"position": [0, 3.27, 0]
|
|
@@ -1087,11 +878,7 @@
|
|
|
1087
878
|
"props": {
|
|
1088
879
|
"mesh": "box",
|
|
1089
880
|
"size": [0.55, 2.8, 0.55],
|
|
1090
|
-
"material": {
|
|
1091
|
-
"color": "#8d939c",
|
|
1092
|
-
"roughness": 0.95,
|
|
1093
|
-
"flatShading": true
|
|
1094
|
-
},
|
|
881
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1095
882
|
"castShadow": true,
|
|
1096
883
|
"receiveShadow": true,
|
|
1097
884
|
"position": [1.9000000000000001, 2.75, 0.8999999999999999]
|
|
@@ -1124,10 +911,7 @@
|
|
|
1124
911
|
"props": {
|
|
1125
912
|
"mesh": "box",
|
|
1126
913
|
"size": [1.16, 2.26, 0.1],
|
|
1127
|
-
"material": {
|
|
1128
|
-
"color": "#54402c",
|
|
1129
|
-
"roughness": 0.85
|
|
1130
|
-
},
|
|
914
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1131
915
|
"castShadow": true,
|
|
1132
916
|
"receiveShadow": true,
|
|
1133
917
|
"position": [2.72, -0.45, 0.9],
|
|
@@ -1140,10 +924,7 @@
|
|
|
1140
924
|
"props": {
|
|
1141
925
|
"mesh": "box",
|
|
1142
926
|
"size": [0.92, 2.05, 0.12],
|
|
1143
|
-
"material": {
|
|
1144
|
-
"color": "#6b533a",
|
|
1145
|
-
"roughness": 0.85
|
|
1146
|
-
},
|
|
927
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
1147
928
|
"castShadow": true,
|
|
1148
929
|
"receiveShadow": true,
|
|
1149
930
|
"position": [2.7600000000000002, -0.5, 0.9],
|
|
@@ -1156,11 +937,7 @@
|
|
|
1156
937
|
"props": {
|
|
1157
938
|
"mesh": "box",
|
|
1158
939
|
"size": [1.3, 0.16, 0.7],
|
|
1159
|
-
"material": {
|
|
1160
|
-
"color": "#8d939c",
|
|
1161
|
-
"roughness": 0.95,
|
|
1162
|
-
"flatShading": true
|
|
1163
|
-
},
|
|
940
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1164
941
|
"castShadow": true,
|
|
1165
942
|
"receiveShadow": true,
|
|
1166
943
|
"position": [3.06, -1.47, 0.9],
|
|
@@ -1173,10 +950,7 @@
|
|
|
1173
950
|
"props": {
|
|
1174
951
|
"mesh": "box",
|
|
1175
952
|
"size": [0.94, 1.04, 0.08],
|
|
1176
|
-
"material": {
|
|
1177
|
-
"color": "#54402c",
|
|
1178
|
-
"roughness": 0.85
|
|
1179
|
-
},
|
|
953
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1180
954
|
"castShadow": true,
|
|
1181
955
|
"receiveShadow": true,
|
|
1182
956
|
"position": [2.72, 0.28, -0.95],
|
|
@@ -1207,10 +981,7 @@
|
|
|
1207
981
|
"props": {
|
|
1208
982
|
"mesh": "box",
|
|
1209
983
|
"size": [0.94, 1.04, 0.08],
|
|
1210
|
-
"material": {
|
|
1211
|
-
"color": "#54402c",
|
|
1212
|
-
"roughness": 0.85
|
|
1213
|
-
},
|
|
984
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1214
985
|
"castShadow": true,
|
|
1215
986
|
"receiveShadow": true,
|
|
1216
987
|
"position": [2.72, 0.28, -2],
|
|
@@ -1241,10 +1012,7 @@
|
|
|
1241
1012
|
"name": "House4",
|
|
1242
1013
|
"type": "StaticBody3D",
|
|
1243
1014
|
"props": {
|
|
1244
|
-
"collider": {
|
|
1245
|
-
"shape": "box",
|
|
1246
|
-
"size": [4.6, 2.9, 5.2]
|
|
1247
|
-
},
|
|
1015
|
+
"collider": { "shape": "box", "size": [4.6, 2.9, 5.2] },
|
|
1248
1016
|
"position": [13, 1.45, -14],
|
|
1249
1017
|
"rotation": [0, -18, 0]
|
|
1250
1018
|
},
|
|
@@ -1255,10 +1023,7 @@
|
|
|
1255
1023
|
"props": {
|
|
1256
1024
|
"mesh": "box",
|
|
1257
1025
|
"size": [4.6, 2.9, 5.2],
|
|
1258
|
-
"material": {
|
|
1259
|
-
"color": "#d3c5a5",
|
|
1260
|
-
"roughness": 0.9
|
|
1261
|
-
},
|
|
1026
|
+
"material": { "color": "#d3c5a5", "roughness": 0.9 },
|
|
1262
1027
|
"castShadow": true,
|
|
1263
1028
|
"receiveShadow": true
|
|
1264
1029
|
}
|
|
@@ -1269,10 +1034,7 @@
|
|
|
1269
1034
|
"props": {
|
|
1270
1035
|
"mesh": "box",
|
|
1271
1036
|
"size": [4.6, 1.7, 2.91],
|
|
1272
|
-
"material": {
|
|
1273
|
-
"color": "#d3c5a5",
|
|
1274
|
-
"roughness": 0.9
|
|
1275
|
-
},
|
|
1037
|
+
"material": { "color": "#d3c5a5", "roughness": 0.9 },
|
|
1276
1038
|
"castShadow": true,
|
|
1277
1039
|
"receiveShadow": true,
|
|
1278
1040
|
"position": [0, 2.3, 0]
|
|
@@ -1284,10 +1046,7 @@
|
|
|
1284
1046
|
"props": {
|
|
1285
1047
|
"mesh": "box",
|
|
1286
1048
|
"size": [0.24, 2.9, 0.24],
|
|
1287
|
-
"material": {
|
|
1288
|
-
"color": "#54402c",
|
|
1289
|
-
"roughness": 0.85
|
|
1290
|
-
},
|
|
1049
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1291
1050
|
"castShadow": true,
|
|
1292
1051
|
"receiveShadow": true,
|
|
1293
1052
|
"position": [-2.29, 0, -2.5900000000000003]
|
|
@@ -1299,10 +1058,7 @@
|
|
|
1299
1058
|
"props": {
|
|
1300
1059
|
"mesh": "box",
|
|
1301
1060
|
"size": [0.24, 2.9, 0.24],
|
|
1302
|
-
"material": {
|
|
1303
|
-
"color": "#54402c",
|
|
1304
|
-
"roughness": 0.85
|
|
1305
|
-
},
|
|
1061
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1306
1062
|
"castShadow": true,
|
|
1307
1063
|
"receiveShadow": true,
|
|
1308
1064
|
"position": [-2.29, 0, 2.5900000000000003]
|
|
@@ -1314,10 +1070,7 @@
|
|
|
1314
1070
|
"props": {
|
|
1315
1071
|
"mesh": "box",
|
|
1316
1072
|
"size": [0.24, 2.9, 0.24],
|
|
1317
|
-
"material": {
|
|
1318
|
-
"color": "#54402c",
|
|
1319
|
-
"roughness": 0.85
|
|
1320
|
-
},
|
|
1073
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1321
1074
|
"castShadow": true,
|
|
1322
1075
|
"receiveShadow": true,
|
|
1323
1076
|
"position": [2.29, 0, -2.5900000000000003]
|
|
@@ -1329,10 +1082,7 @@
|
|
|
1329
1082
|
"props": {
|
|
1330
1083
|
"mesh": "box",
|
|
1331
1084
|
"size": [0.24, 2.9, 0.24],
|
|
1332
|
-
"material": {
|
|
1333
|
-
"color": "#54402c",
|
|
1334
|
-
"roughness": 0.85
|
|
1335
|
-
},
|
|
1085
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1336
1086
|
"castShadow": true,
|
|
1337
1087
|
"receiveShadow": true,
|
|
1338
1088
|
"position": [2.29, 0, 2.5900000000000003]
|
|
@@ -1344,10 +1094,7 @@
|
|
|
1344
1094
|
"props": {
|
|
1345
1095
|
"mesh": "box",
|
|
1346
1096
|
"size": [4.66, 0.22, 0.26],
|
|
1347
|
-
"material": {
|
|
1348
|
-
"color": "#54402c",
|
|
1349
|
-
"roughness": 0.85
|
|
1350
|
-
},
|
|
1097
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1351
1098
|
"castShadow": true,
|
|
1352
1099
|
"receiveShadow": true,
|
|
1353
1100
|
"position": [0, 1.3399999999999999, -2.58]
|
|
@@ -1359,10 +1106,7 @@
|
|
|
1359
1106
|
"props": {
|
|
1360
1107
|
"mesh": "box",
|
|
1361
1108
|
"size": [4.66, 0.22, 0.26],
|
|
1362
|
-
"material": {
|
|
1363
|
-
"color": "#54402c",
|
|
1364
|
-
"roughness": 0.85
|
|
1365
|
-
},
|
|
1109
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1366
1110
|
"castShadow": true,
|
|
1367
1111
|
"receiveShadow": true,
|
|
1368
1112
|
"position": [0, 1.3399999999999999, 2.58]
|
|
@@ -1374,11 +1118,7 @@
|
|
|
1374
1118
|
"props": {
|
|
1375
1119
|
"mesh": "box",
|
|
1376
1120
|
"size": [5.5, 0.16, 3.64],
|
|
1377
|
-
"material": {
|
|
1378
|
-
"color": "#a05a3c",
|
|
1379
|
-
"roughness": 0.85,
|
|
1380
|
-
"flatShading": true
|
|
1381
|
-
},
|
|
1121
|
+
"material": { "color": "#a05a3c", "roughness": 0.85, "flatShading": true },
|
|
1382
1122
|
"castShadow": true,
|
|
1383
1123
|
"receiveShadow": true,
|
|
1384
1124
|
"position": [0, 2.3, -1.5250000000000001],
|
|
@@ -1391,11 +1131,7 @@
|
|
|
1391
1131
|
"props": {
|
|
1392
1132
|
"mesh": "box",
|
|
1393
1133
|
"size": [5.5, 0.16, 3.64],
|
|
1394
|
-
"material": {
|
|
1395
|
-
"color": "#a05a3c",
|
|
1396
|
-
"roughness": 0.85,
|
|
1397
|
-
"flatShading": true
|
|
1398
|
-
},
|
|
1134
|
+
"material": { "color": "#a05a3c", "roughness": 0.85, "flatShading": true },
|
|
1399
1135
|
"castShadow": true,
|
|
1400
1136
|
"receiveShadow": true,
|
|
1401
1137
|
"position": [0, 2.3, 1.5250000000000001],
|
|
@@ -1408,10 +1144,7 @@
|
|
|
1408
1144
|
"props": {
|
|
1409
1145
|
"mesh": "box",
|
|
1410
1146
|
"size": [5.6, 0.2, 0.3],
|
|
1411
|
-
"material": {
|
|
1412
|
-
"color": "#54402c",
|
|
1413
|
-
"roughness": 0.85
|
|
1414
|
-
},
|
|
1147
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1415
1148
|
"castShadow": true,
|
|
1416
1149
|
"receiveShadow": true,
|
|
1417
1150
|
"position": [0, 3.17, 0]
|
|
@@ -1423,11 +1156,7 @@
|
|
|
1423
1156
|
"props": {
|
|
1424
1157
|
"mesh": "box",
|
|
1425
1158
|
"size": [0.55, 2.8, 0.55],
|
|
1426
|
-
"material": {
|
|
1427
|
-
"color": "#8d939c",
|
|
1428
|
-
"roughness": 0.95,
|
|
1429
|
-
"flatShading": true
|
|
1430
|
-
},
|
|
1159
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1431
1160
|
"castShadow": true,
|
|
1432
1161
|
"receiveShadow": true,
|
|
1433
1162
|
"position": [1.4999999999999998, 2.6499999999999995, 0.9359999999999999]
|
|
@@ -1460,10 +1189,7 @@
|
|
|
1460
1189
|
"props": {
|
|
1461
1190
|
"mesh": "box",
|
|
1462
1191
|
"size": [1.16, 2.26, 0.1],
|
|
1463
|
-
"material": {
|
|
1464
|
-
"color": "#54402c",
|
|
1465
|
-
"roughness": 0.85
|
|
1466
|
-
},
|
|
1192
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1467
1193
|
"castShadow": true,
|
|
1468
1194
|
"receiveShadow": true,
|
|
1469
1195
|
"position": [-2.32, -0.3499999999999999, 0.9],
|
|
@@ -1476,10 +1202,7 @@
|
|
|
1476
1202
|
"props": {
|
|
1477
1203
|
"mesh": "box",
|
|
1478
1204
|
"size": [0.92, 2.05, 0.12],
|
|
1479
|
-
"material": {
|
|
1480
|
-
"color": "#6b533a",
|
|
1481
|
-
"roughness": 0.85
|
|
1482
|
-
},
|
|
1205
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
1483
1206
|
"castShadow": true,
|
|
1484
1207
|
"receiveShadow": true,
|
|
1485
1208
|
"position": [-2.36, -0.3999999999999999, 0.9],
|
|
@@ -1492,11 +1215,7 @@
|
|
|
1492
1215
|
"props": {
|
|
1493
1216
|
"mesh": "box",
|
|
1494
1217
|
"size": [1.3, 0.16, 0.7],
|
|
1495
|
-
"material": {
|
|
1496
|
-
"color": "#8d939c",
|
|
1497
|
-
"roughness": 0.95,
|
|
1498
|
-
"flatShading": true
|
|
1499
|
-
},
|
|
1218
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1500
1219
|
"castShadow": true,
|
|
1501
1220
|
"receiveShadow": true,
|
|
1502
1221
|
"position": [-2.6599999999999997, -1.3699999999999999, 0.9],
|
|
@@ -1509,10 +1228,7 @@
|
|
|
1509
1228
|
"props": {
|
|
1510
1229
|
"mesh": "box",
|
|
1511
1230
|
"size": [0.94, 1.04, 0.08],
|
|
1512
|
-
"material": {
|
|
1513
|
-
"color": "#54402c",
|
|
1514
|
-
"roughness": 0.85
|
|
1515
|
-
},
|
|
1231
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1516
1232
|
"castShadow": true,
|
|
1517
1233
|
"receiveShadow": true,
|
|
1518
1234
|
"position": [-2.32, 0.28, -0.95],
|
|
@@ -1543,10 +1259,7 @@
|
|
|
1543
1259
|
"props": {
|
|
1544
1260
|
"mesh": "box",
|
|
1545
1261
|
"size": [0.94, 1.04, 0.08],
|
|
1546
|
-
"material": {
|
|
1547
|
-
"color": "#54402c",
|
|
1548
|
-
"roughness": 0.85
|
|
1549
|
-
},
|
|
1262
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1550
1263
|
"castShadow": true,
|
|
1551
1264
|
"receiveShadow": true,
|
|
1552
1265
|
"position": [-2.32, 0.28, -2],
|
|
@@ -1577,10 +1290,7 @@
|
|
|
1577
1290
|
"name": "House5",
|
|
1578
1291
|
"type": "StaticBody3D",
|
|
1579
1292
|
"props": {
|
|
1580
|
-
"collider": {
|
|
1581
|
-
"shape": "box",
|
|
1582
|
-
"size": [6.2, 3.4, 5.4]
|
|
1583
|
-
},
|
|
1293
|
+
"collider": { "shape": "box", "size": [6.2, 3.4, 5.4] },
|
|
1584
1294
|
"position": [-3, 1.7, 17],
|
|
1585
1295
|
"rotation": [0, 3, 0]
|
|
1586
1296
|
},
|
|
@@ -1591,10 +1301,7 @@
|
|
|
1591
1301
|
"props": {
|
|
1592
1302
|
"mesh": "box",
|
|
1593
1303
|
"size": [6.2, 3.4, 5.4],
|
|
1594
|
-
"material": {
|
|
1595
|
-
"color": "#dccdae",
|
|
1596
|
-
"roughness": 0.9
|
|
1597
|
-
},
|
|
1304
|
+
"material": { "color": "#dccdae", "roughness": 0.9 },
|
|
1598
1305
|
"castShadow": true,
|
|
1599
1306
|
"receiveShadow": true
|
|
1600
1307
|
}
|
|
@@ -1605,10 +1312,7 @@
|
|
|
1605
1312
|
"props": {
|
|
1606
1313
|
"mesh": "box",
|
|
1607
1314
|
"size": [6.2, 1.7, 3.02],
|
|
1608
|
-
"material": {
|
|
1609
|
-
"color": "#dccdae",
|
|
1610
|
-
"roughness": 0.9
|
|
1611
|
-
},
|
|
1315
|
+
"material": { "color": "#dccdae", "roughness": 0.9 },
|
|
1612
1316
|
"castShadow": true,
|
|
1613
1317
|
"receiveShadow": true,
|
|
1614
1318
|
"position": [0, 2.55, 0]
|
|
@@ -1620,10 +1324,7 @@
|
|
|
1620
1324
|
"props": {
|
|
1621
1325
|
"mesh": "box",
|
|
1622
1326
|
"size": [0.24, 3.4, 0.24],
|
|
1623
|
-
"material": {
|
|
1624
|
-
"color": "#54402c",
|
|
1625
|
-
"roughness": 0.85
|
|
1626
|
-
},
|
|
1327
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1627
1328
|
"castShadow": true,
|
|
1628
1329
|
"receiveShadow": true,
|
|
1629
1330
|
"position": [-3.0900000000000003, 0, -2.6900000000000004]
|
|
@@ -1635,10 +1336,7 @@
|
|
|
1635
1336
|
"props": {
|
|
1636
1337
|
"mesh": "box",
|
|
1637
1338
|
"size": [0.24, 3.4, 0.24],
|
|
1638
|
-
"material": {
|
|
1639
|
-
"color": "#54402c",
|
|
1640
|
-
"roughness": 0.85
|
|
1641
|
-
},
|
|
1339
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1642
1340
|
"castShadow": true,
|
|
1643
1341
|
"receiveShadow": true,
|
|
1644
1342
|
"position": [-3.0900000000000003, 0, 2.6900000000000004]
|
|
@@ -1650,10 +1348,7 @@
|
|
|
1650
1348
|
"props": {
|
|
1651
1349
|
"mesh": "box",
|
|
1652
1350
|
"size": [0.24, 3.4, 0.24],
|
|
1653
|
-
"material": {
|
|
1654
|
-
"color": "#54402c",
|
|
1655
|
-
"roughness": 0.85
|
|
1656
|
-
},
|
|
1351
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1657
1352
|
"castShadow": true,
|
|
1658
1353
|
"receiveShadow": true,
|
|
1659
1354
|
"position": [3.0900000000000003, 0, -2.6900000000000004]
|
|
@@ -1665,10 +1360,7 @@
|
|
|
1665
1360
|
"props": {
|
|
1666
1361
|
"mesh": "box",
|
|
1667
1362
|
"size": [0.24, 3.4, 0.24],
|
|
1668
|
-
"material": {
|
|
1669
|
-
"color": "#54402c",
|
|
1670
|
-
"roughness": 0.85
|
|
1671
|
-
},
|
|
1363
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1672
1364
|
"castShadow": true,
|
|
1673
1365
|
"receiveShadow": true,
|
|
1674
1366
|
"position": [3.0900000000000003, 0, 2.6900000000000004]
|
|
@@ -1680,10 +1372,7 @@
|
|
|
1680
1372
|
"props": {
|
|
1681
1373
|
"mesh": "box",
|
|
1682
1374
|
"size": [6.26, 0.22, 0.26],
|
|
1683
|
-
"material": {
|
|
1684
|
-
"color": "#54402c",
|
|
1685
|
-
"roughness": 0.85
|
|
1686
|
-
},
|
|
1375
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1687
1376
|
"castShadow": true,
|
|
1688
1377
|
"receiveShadow": true,
|
|
1689
1378
|
"position": [0, 1.5899999999999999, -2.68]
|
|
@@ -1695,10 +1384,7 @@
|
|
|
1695
1384
|
"props": {
|
|
1696
1385
|
"mesh": "box",
|
|
1697
1386
|
"size": [6.26, 0.22, 0.26],
|
|
1698
|
-
"material": {
|
|
1699
|
-
"color": "#54402c",
|
|
1700
|
-
"roughness": 0.85
|
|
1701
|
-
},
|
|
1387
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1702
1388
|
"castShadow": true,
|
|
1703
1389
|
"receiveShadow": true,
|
|
1704
1390
|
"position": [0, 1.5899999999999999, 2.68]
|
|
@@ -1710,11 +1396,7 @@
|
|
|
1710
1396
|
"props": {
|
|
1711
1397
|
"mesh": "box",
|
|
1712
1398
|
"size": [7.1, 0.16, 3.73],
|
|
1713
|
-
"material": {
|
|
1714
|
-
"color": "#7a4534",
|
|
1715
|
-
"roughness": 0.85,
|
|
1716
|
-
"flatShading": true
|
|
1717
|
-
},
|
|
1399
|
+
"material": { "color": "#7a4534", "roughness": 0.85, "flatShading": true },
|
|
1718
1400
|
"castShadow": true,
|
|
1719
1401
|
"receiveShadow": true,
|
|
1720
1402
|
"position": [0, 2.55, -1.5750000000000002],
|
|
@@ -1727,11 +1409,7 @@
|
|
|
1727
1409
|
"props": {
|
|
1728
1410
|
"mesh": "box",
|
|
1729
1411
|
"size": [7.1, 0.16, 3.73],
|
|
1730
|
-
"material": {
|
|
1731
|
-
"color": "#7a4534",
|
|
1732
|
-
"roughness": 0.85,
|
|
1733
|
-
"flatShading": true
|
|
1734
|
-
},
|
|
1412
|
+
"material": { "color": "#7a4534", "roughness": 0.85, "flatShading": true },
|
|
1735
1413
|
"castShadow": true,
|
|
1736
1414
|
"receiveShadow": true,
|
|
1737
1415
|
"position": [0, 2.55, 1.5750000000000002],
|
|
@@ -1744,10 +1422,7 @@
|
|
|
1744
1422
|
"props": {
|
|
1745
1423
|
"mesh": "box",
|
|
1746
1424
|
"size": [7.2, 0.2, 0.3],
|
|
1747
|
-
"material": {
|
|
1748
|
-
"color": "#54402c",
|
|
1749
|
-
"roughness": 0.85
|
|
1750
|
-
},
|
|
1425
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1751
1426
|
"castShadow": true,
|
|
1752
1427
|
"receiveShadow": true,
|
|
1753
1428
|
"position": [0, 3.42, 0]
|
|
@@ -1759,11 +1434,7 @@
|
|
|
1759
1434
|
"props": {
|
|
1760
1435
|
"mesh": "box",
|
|
1761
1436
|
"size": [0.55, 2.8, 0.55],
|
|
1762
|
-
"material": {
|
|
1763
|
-
"color": "#8d939c",
|
|
1764
|
-
"roughness": 0.95,
|
|
1765
|
-
"flatShading": true
|
|
1766
|
-
},
|
|
1437
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1767
1438
|
"castShadow": true,
|
|
1768
1439
|
"receiveShadow": true,
|
|
1769
1440
|
"position": [2.3, 2.8999999999999995, 0.972]
|
|
@@ -1796,10 +1467,7 @@
|
|
|
1796
1467
|
"props": {
|
|
1797
1468
|
"mesh": "box",
|
|
1798
1469
|
"size": [1.16, 2.26, 0.1],
|
|
1799
|
-
"material": {
|
|
1800
|
-
"color": "#54402c",
|
|
1801
|
-
"roughness": 0.85
|
|
1802
|
-
},
|
|
1470
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1803
1471
|
"castShadow": true,
|
|
1804
1472
|
"receiveShadow": true,
|
|
1805
1473
|
"position": [0.9, -0.5999999999999999, -2.72],
|
|
@@ -1812,10 +1480,7 @@
|
|
|
1812
1480
|
"props": {
|
|
1813
1481
|
"mesh": "box",
|
|
1814
1482
|
"size": [0.92, 2.05, 0.12],
|
|
1815
|
-
"material": {
|
|
1816
|
-
"color": "#6b533a",
|
|
1817
|
-
"roughness": 0.85
|
|
1818
|
-
},
|
|
1483
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
1819
1484
|
"castShadow": true,
|
|
1820
1485
|
"receiveShadow": true,
|
|
1821
1486
|
"position": [0.9, -0.6499999999999999, -2.7600000000000002],
|
|
@@ -1828,11 +1493,7 @@
|
|
|
1828
1493
|
"props": {
|
|
1829
1494
|
"mesh": "box",
|
|
1830
1495
|
"size": [1.3, 0.16, 0.7],
|
|
1831
|
-
"material": {
|
|
1832
|
-
"color": "#8d939c",
|
|
1833
|
-
"roughness": 0.95,
|
|
1834
|
-
"flatShading": true
|
|
1835
|
-
},
|
|
1496
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1836
1497
|
"castShadow": true,
|
|
1837
1498
|
"receiveShadow": true,
|
|
1838
1499
|
"position": [0.9, -1.6199999999999999, -3.06],
|
|
@@ -1845,10 +1506,7 @@
|
|
|
1845
1506
|
"props": {
|
|
1846
1507
|
"mesh": "box",
|
|
1847
1508
|
"size": [0.94, 1.04, 0.08],
|
|
1848
|
-
"material": {
|
|
1849
|
-
"color": "#54402c",
|
|
1850
|
-
"roughness": 0.85
|
|
1851
|
-
},
|
|
1509
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1852
1510
|
"castShadow": true,
|
|
1853
1511
|
"receiveShadow": true,
|
|
1854
1512
|
"position": [-0.95, 0.28, -2.72],
|
|
@@ -1879,10 +1537,7 @@
|
|
|
1879
1537
|
"props": {
|
|
1880
1538
|
"mesh": "box",
|
|
1881
1539
|
"size": [0.94, 1.04, 0.08],
|
|
1882
|
-
"material": {
|
|
1883
|
-
"color": "#54402c",
|
|
1884
|
-
"roughness": 0.85
|
|
1885
|
-
},
|
|
1540
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1886
1541
|
"castShadow": true,
|
|
1887
1542
|
"receiveShadow": true,
|
|
1888
1543
|
"position": [-2, 0.28, -2.72],
|
|
@@ -1913,10 +1568,7 @@
|
|
|
1913
1568
|
"name": "Well",
|
|
1914
1569
|
"type": "StaticBody3D",
|
|
1915
1570
|
"props": {
|
|
1916
|
-
"collider": {
|
|
1917
|
-
"shape": "box",
|
|
1918
|
-
"size": [2.2, 1, 2.2]
|
|
1919
|
-
},
|
|
1571
|
+
"collider": { "shape": "box", "size": [2.2, 1, 2.2] },
|
|
1920
1572
|
"position": [5, 0.5, 8]
|
|
1921
1573
|
},
|
|
1922
1574
|
"children": [
|
|
@@ -1926,11 +1578,7 @@
|
|
|
1926
1578
|
"props": {
|
|
1927
1579
|
"mesh": "cylinder",
|
|
1928
1580
|
"size": [0.95, 1, 0.95],
|
|
1929
|
-
"material": {
|
|
1930
|
-
"color": "#8d939c",
|
|
1931
|
-
"roughness": 0.95,
|
|
1932
|
-
"flatShading": true
|
|
1933
|
-
},
|
|
1581
|
+
"material": { "color": "#8d939c", "roughness": 0.95, "flatShading": true },
|
|
1934
1582
|
"castShadow": true,
|
|
1935
1583
|
"receiveShadow": true
|
|
1936
1584
|
}
|
|
@@ -1941,11 +1589,7 @@
|
|
|
1941
1589
|
"props": {
|
|
1942
1590
|
"mesh": "cylinder",
|
|
1943
1591
|
"size": [1.05, 0.14, 1.05],
|
|
1944
|
-
"material": {
|
|
1945
|
-
"color": "#7a808a",
|
|
1946
|
-
"roughness": 0.95,
|
|
1947
|
-
"flatShading": true
|
|
1948
|
-
},
|
|
1592
|
+
"material": { "color": "#7a808a", "roughness": 0.95, "flatShading": true },
|
|
1949
1593
|
"castShadow": true,
|
|
1950
1594
|
"receiveShadow": true,
|
|
1951
1595
|
"position": [0, 0.55, 0]
|
|
@@ -1957,10 +1601,7 @@
|
|
|
1957
1601
|
"props": {
|
|
1958
1602
|
"mesh": "box",
|
|
1959
1603
|
"size": [0.14, 1.7, 0.14],
|
|
1960
|
-
"material": {
|
|
1961
|
-
"color": "#54402c",
|
|
1962
|
-
"roughness": 0.85
|
|
1963
|
-
},
|
|
1604
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1964
1605
|
"castShadow": true,
|
|
1965
1606
|
"receiveShadow": true,
|
|
1966
1607
|
"position": [-0.95, 0.85, 0]
|
|
@@ -1972,10 +1613,7 @@
|
|
|
1972
1613
|
"props": {
|
|
1973
1614
|
"mesh": "box",
|
|
1974
1615
|
"size": [0.14, 1.7, 0.14],
|
|
1975
|
-
"material": {
|
|
1976
|
-
"color": "#54402c",
|
|
1977
|
-
"roughness": 0.85
|
|
1978
|
-
},
|
|
1616
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
1979
1617
|
"castShadow": true,
|
|
1980
1618
|
"receiveShadow": true,
|
|
1981
1619
|
"position": [0.95, 0.85, 0]
|
|
@@ -1987,11 +1625,7 @@
|
|
|
1987
1625
|
"props": {
|
|
1988
1626
|
"mesh": "box",
|
|
1989
1627
|
"size": [2.5, 0.1, 0.95],
|
|
1990
|
-
"material": {
|
|
1991
|
-
"color": "#8a4f38",
|
|
1992
|
-
"roughness": 0.85,
|
|
1993
|
-
"flatShading": true
|
|
1994
|
-
},
|
|
1628
|
+
"material": { "color": "#8a4f38", "roughness": 0.85, "flatShading": true },
|
|
1995
1629
|
"castShadow": true,
|
|
1996
1630
|
"receiveShadow": true,
|
|
1997
1631
|
"position": [0, 1.85, -0.38],
|
|
@@ -2004,11 +1638,7 @@
|
|
|
2004
1638
|
"props": {
|
|
2005
1639
|
"mesh": "box",
|
|
2006
1640
|
"size": [2.5, 0.1, 0.95],
|
|
2007
|
-
"material": {
|
|
2008
|
-
"color": "#8a4f38",
|
|
2009
|
-
"roughness": 0.85,
|
|
2010
|
-
"flatShading": true
|
|
2011
|
-
},
|
|
1641
|
+
"material": { "color": "#8a4f38", "roughness": 0.85, "flatShading": true },
|
|
2012
1642
|
"castShadow": true,
|
|
2013
1643
|
"receiveShadow": true,
|
|
2014
1644
|
"position": [0, 1.85, 0.38],
|
|
@@ -2021,10 +1651,7 @@
|
|
|
2021
1651
|
"props": {
|
|
2022
1652
|
"mesh": "cylinder",
|
|
2023
1653
|
"size": [0.06, 2, 0.06],
|
|
2024
|
-
"material": {
|
|
2025
|
-
"color": "#6b533a",
|
|
2026
|
-
"roughness": 0.85
|
|
2027
|
-
},
|
|
1654
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
2028
1655
|
"castShadow": true,
|
|
2029
1656
|
"receiveShadow": true,
|
|
2030
1657
|
"position": [0, 1.45, 0],
|
|
@@ -2037,10 +1664,7 @@
|
|
|
2037
1664
|
"props": {
|
|
2038
1665
|
"mesh": "cylinder",
|
|
2039
1666
|
"size": [0.18, 0.26, 0.18],
|
|
2040
|
-
"material": {
|
|
2041
|
-
"color": "#6b533a",
|
|
2042
|
-
"roughness": 0.85
|
|
2043
|
-
},
|
|
1667
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
2044
1668
|
"castShadow": true,
|
|
2045
1669
|
"receiveShadow": true,
|
|
2046
1670
|
"position": [0.3, 0.95, 0]
|
|
@@ -2052,10 +1676,7 @@
|
|
|
2052
1676
|
"name": "GatePostL",
|
|
2053
1677
|
"type": "StaticBody3D",
|
|
2054
1678
|
"props": {
|
|
2055
|
-
"collider": {
|
|
2056
|
-
"shape": "box",
|
|
2057
|
-
"size": [0.8, 4, 0.8]
|
|
2058
|
-
},
|
|
1679
|
+
"collider": { "shape": "box", "size": [0.8, 4, 0.8] },
|
|
2059
1680
|
"position": [-2.4, 2, -26]
|
|
2060
1681
|
},
|
|
2061
1682
|
"children": [
|
|
@@ -2065,10 +1686,7 @@
|
|
|
2065
1686
|
"props": {
|
|
2066
1687
|
"mesh": "box",
|
|
2067
1688
|
"size": [0.8, 4, 0.8],
|
|
2068
|
-
"material": {
|
|
2069
|
-
"color": "#54402c",
|
|
2070
|
-
"roughness": 0.85
|
|
2071
|
-
},
|
|
1689
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2072
1690
|
"castShadow": true,
|
|
2073
1691
|
"receiveShadow": true
|
|
2074
1692
|
}
|
|
@@ -2079,10 +1697,7 @@
|
|
|
2079
1697
|
"props": {
|
|
2080
1698
|
"mesh": "box",
|
|
2081
1699
|
"size": [0.24, 1.5, 0.24],
|
|
2082
|
-
"material": {
|
|
2083
|
-
"color": "#6b533a",
|
|
2084
|
-
"roughness": 0.85
|
|
2085
|
-
},
|
|
1700
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
2086
1701
|
"castShadow": true,
|
|
2087
1702
|
"receiveShadow": true,
|
|
2088
1703
|
"position": [0.55, 1.45, 0],
|
|
@@ -2095,10 +1710,7 @@
|
|
|
2095
1710
|
"name": "GatePostR",
|
|
2096
1711
|
"type": "StaticBody3D",
|
|
2097
1712
|
"props": {
|
|
2098
|
-
"collider": {
|
|
2099
|
-
"shape": "box",
|
|
2100
|
-
"size": [0.8, 4, 0.8]
|
|
2101
|
-
},
|
|
1713
|
+
"collider": { "shape": "box", "size": [0.8, 4, 0.8] },
|
|
2102
1714
|
"position": [2.4, 2, -26]
|
|
2103
1715
|
},
|
|
2104
1716
|
"children": [
|
|
@@ -2108,10 +1720,7 @@
|
|
|
2108
1720
|
"props": {
|
|
2109
1721
|
"mesh": "box",
|
|
2110
1722
|
"size": [0.8, 4, 0.8],
|
|
2111
|
-
"material": {
|
|
2112
|
-
"color": "#54402c",
|
|
2113
|
-
"roughness": 0.85
|
|
2114
|
-
},
|
|
1723
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2115
1724
|
"castShadow": true,
|
|
2116
1725
|
"receiveShadow": true
|
|
2117
1726
|
}
|
|
@@ -2122,10 +1731,7 @@
|
|
|
2122
1731
|
"props": {
|
|
2123
1732
|
"mesh": "box",
|
|
2124
1733
|
"size": [0.24, 1.5, 0.24],
|
|
2125
|
-
"material": {
|
|
2126
|
-
"color": "#6b533a",
|
|
2127
|
-
"roughness": 0.85
|
|
2128
|
-
},
|
|
1734
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
2129
1735
|
"castShadow": true,
|
|
2130
1736
|
"receiveShadow": true,
|
|
2131
1737
|
"position": [-0.55, 1.45, 0],
|
|
@@ -2140,10 +1746,7 @@
|
|
|
2140
1746
|
"props": {
|
|
2141
1747
|
"mesh": "box",
|
|
2142
1748
|
"size": [6.4, 0.7, 0.9],
|
|
2143
|
-
"material": {
|
|
2144
|
-
"color": "#54402c",
|
|
2145
|
-
"roughness": 0.85
|
|
2146
|
-
},
|
|
1749
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2147
1750
|
"castShadow": true,
|
|
2148
1751
|
"receiveShadow": true,
|
|
2149
1752
|
"position": [0, 4.1, -26]
|
|
@@ -2155,11 +1758,7 @@
|
|
|
2155
1758
|
"props": {
|
|
2156
1759
|
"mesh": "box",
|
|
2157
1760
|
"size": [7.2, 0.22, 1.2],
|
|
2158
|
-
"material": {
|
|
2159
|
-
"color": "#8a4f38",
|
|
2160
|
-
"roughness": 0.85,
|
|
2161
|
-
"flatShading": true
|
|
2162
|
-
},
|
|
1761
|
+
"material": { "color": "#8a4f38", "roughness": 0.85, "flatShading": true },
|
|
2163
1762
|
"castShadow": true,
|
|
2164
1763
|
"receiveShadow": true,
|
|
2165
1764
|
"position": [0, 4.55, -26]
|
|
@@ -2168,10 +1767,7 @@
|
|
|
2168
1767
|
{
|
|
2169
1768
|
"name": "GateLampL",
|
|
2170
1769
|
"type": "Node3D",
|
|
2171
|
-
"props": {
|
|
2172
|
-
"position": [-3.2, 0, -25.2],
|
|
2173
|
-
"rotation": [0, 40, 0]
|
|
2174
|
-
},
|
|
1770
|
+
"props": { "position": [-3.2, 0, -25.2], "rotation": [0, 40, 0] },
|
|
2175
1771
|
"children": [
|
|
2176
1772
|
{
|
|
2177
1773
|
"name": "Post",
|
|
@@ -2179,10 +1775,7 @@
|
|
|
2179
1775
|
"props": {
|
|
2180
1776
|
"mesh": "box",
|
|
2181
1777
|
"size": [0.16, 2.3, 0.16],
|
|
2182
|
-
"material": {
|
|
2183
|
-
"color": "#54402c",
|
|
2184
|
-
"roughness": 0.85
|
|
2185
|
-
},
|
|
1778
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2186
1779
|
"castShadow": true,
|
|
2187
1780
|
"receiveShadow": true,
|
|
2188
1781
|
"position": [0, 1.15, 0]
|
|
@@ -2194,10 +1787,7 @@
|
|
|
2194
1787
|
"props": {
|
|
2195
1788
|
"mesh": "box",
|
|
2196
1789
|
"size": [0.62, 0.12, 0.12],
|
|
2197
|
-
"material": {
|
|
2198
|
-
"color": "#54402c",
|
|
2199
|
-
"roughness": 0.85
|
|
2200
|
-
},
|
|
1790
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2201
1791
|
"castShadow": true,
|
|
2202
1792
|
"receiveShadow": true,
|
|
2203
1793
|
"position": [0.26, 2.24, 0]
|
|
@@ -2209,10 +1799,7 @@
|
|
|
2209
1799
|
"props": {
|
|
2210
1800
|
"mesh": "box",
|
|
2211
1801
|
"size": [0.3, 0.4, 0.3],
|
|
2212
|
-
"material": {
|
|
2213
|
-
"color": "#3c3228",
|
|
2214
|
-
"roughness": 0.6
|
|
2215
|
-
},
|
|
1802
|
+
"material": { "color": "#3c3228", "roughness": 0.6 },
|
|
2216
1803
|
"castShadow": true,
|
|
2217
1804
|
"receiveShadow": true,
|
|
2218
1805
|
"position": [0.5, 2, 0]
|
|
@@ -2240,10 +1827,7 @@
|
|
|
2240
1827
|
{
|
|
2241
1828
|
"name": "GateLampR",
|
|
2242
1829
|
"type": "Node3D",
|
|
2243
|
-
"props": {
|
|
2244
|
-
"position": [3.2, 0, -25.2],
|
|
2245
|
-
"rotation": [0, 140, 0]
|
|
2246
|
-
},
|
|
1830
|
+
"props": { "position": [3.2, 0, -25.2], "rotation": [0, 140, 0] },
|
|
2247
1831
|
"children": [
|
|
2248
1832
|
{
|
|
2249
1833
|
"name": "Post",
|
|
@@ -2251,10 +1835,7 @@
|
|
|
2251
1835
|
"props": {
|
|
2252
1836
|
"mesh": "box",
|
|
2253
1837
|
"size": [0.16, 2.3, 0.16],
|
|
2254
|
-
"material": {
|
|
2255
|
-
"color": "#54402c",
|
|
2256
|
-
"roughness": 0.85
|
|
2257
|
-
},
|
|
1838
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2258
1839
|
"castShadow": true,
|
|
2259
1840
|
"receiveShadow": true,
|
|
2260
1841
|
"position": [0, 1.15, 0]
|
|
@@ -2266,10 +1847,7 @@
|
|
|
2266
1847
|
"props": {
|
|
2267
1848
|
"mesh": "box",
|
|
2268
1849
|
"size": [0.62, 0.12, 0.12],
|
|
2269
|
-
"material": {
|
|
2270
|
-
"color": "#54402c",
|
|
2271
|
-
"roughness": 0.85
|
|
2272
|
-
},
|
|
1850
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2273
1851
|
"castShadow": true,
|
|
2274
1852
|
"receiveShadow": true,
|
|
2275
1853
|
"position": [0.26, 2.24, 0]
|
|
@@ -2281,10 +1859,7 @@
|
|
|
2281
1859
|
"props": {
|
|
2282
1860
|
"mesh": "box",
|
|
2283
1861
|
"size": [0.3, 0.4, 0.3],
|
|
2284
|
-
"material": {
|
|
2285
|
-
"color": "#3c3228",
|
|
2286
|
-
"roughness": 0.6
|
|
2287
|
-
},
|
|
1862
|
+
"material": { "color": "#3c3228", "roughness": 0.6 },
|
|
2288
1863
|
"castShadow": true,
|
|
2289
1864
|
"receiveShadow": true,
|
|
2290
1865
|
"position": [0.5, 2, 0]
|
|
@@ -2315,10 +1890,7 @@
|
|
|
2315
1890
|
"props": {
|
|
2316
1891
|
"mesh": "box",
|
|
2317
1892
|
"size": [0.14, 1, 0.14],
|
|
2318
|
-
"material": {
|
|
2319
|
-
"color": "#6b533a",
|
|
2320
|
-
"roughness": 0.9
|
|
2321
|
-
},
|
|
1893
|
+
"material": { "color": "#6b533a", "roughness": 0.9 },
|
|
2322
1894
|
"transforms": [
|
|
2323
1895
|
[-2.6, 0.5, -23, -4, 1],
|
|
2324
1896
|
[-2.6, 0.5, -21.3, -4, 1],
|
|
@@ -2348,10 +1920,7 @@
|
|
|
2348
1920
|
"props": {
|
|
2349
1921
|
"mesh": "box",
|
|
2350
1922
|
"size": [0.07, 0.1, 15.4],
|
|
2351
|
-
"material": {
|
|
2352
|
-
"color": "#755c40",
|
|
2353
|
-
"roughness": 0.9
|
|
2354
|
-
},
|
|
1923
|
+
"material": { "color": "#755c40", "roughness": 0.9 },
|
|
2355
1924
|
"castShadow": true,
|
|
2356
1925
|
"receiveShadow": true,
|
|
2357
1926
|
"position": [-2.6, 0.42, -15.5]
|
|
@@ -2363,10 +1932,7 @@
|
|
|
2363
1932
|
"props": {
|
|
2364
1933
|
"mesh": "box",
|
|
2365
1934
|
"size": [0.07, 0.1, 15.4],
|
|
2366
|
-
"material": {
|
|
2367
|
-
"color": "#755c40",
|
|
2368
|
-
"roughness": 0.9
|
|
2369
|
-
},
|
|
1935
|
+
"material": { "color": "#755c40", "roughness": 0.9 },
|
|
2370
1936
|
"castShadow": true,
|
|
2371
1937
|
"receiveShadow": true,
|
|
2372
1938
|
"position": [-2.6, 0.78, -15.5]
|
|
@@ -2378,10 +1944,7 @@
|
|
|
2378
1944
|
"props": {
|
|
2379
1945
|
"mesh": "box",
|
|
2380
1946
|
"size": [0.07, 0.1, 15.4],
|
|
2381
|
-
"material": {
|
|
2382
|
-
"color": "#755c40",
|
|
2383
|
-
"roughness": 0.9
|
|
2384
|
-
},
|
|
1947
|
+
"material": { "color": "#755c40", "roughness": 0.9 },
|
|
2385
1948
|
"castShadow": true,
|
|
2386
1949
|
"receiveShadow": true,
|
|
2387
1950
|
"position": [2.6, 0.42, -15.5]
|
|
@@ -2393,10 +1956,7 @@
|
|
|
2393
1956
|
"props": {
|
|
2394
1957
|
"mesh": "box",
|
|
2395
1958
|
"size": [0.07, 0.1, 15.4],
|
|
2396
|
-
"material": {
|
|
2397
|
-
"color": "#755c40",
|
|
2398
|
-
"roughness": 0.9
|
|
2399
|
-
},
|
|
1959
|
+
"material": { "color": "#755c40", "roughness": 0.9 },
|
|
2400
1960
|
"castShadow": true,
|
|
2401
1961
|
"receiveShadow": true,
|
|
2402
1962
|
"position": [2.6, 0.78, -15.5]
|
|
@@ -2405,10 +1965,7 @@
|
|
|
2405
1965
|
{
|
|
2406
1966
|
"name": "Lamp1",
|
|
2407
1967
|
"type": "Node3D",
|
|
2408
|
-
"props": {
|
|
2409
|
-
"position": [-2.6, 0, 3.4],
|
|
2410
|
-
"rotation": [0, -30, 0]
|
|
2411
|
-
},
|
|
1968
|
+
"props": { "position": [-2.6, 0, 3.4], "rotation": [0, -30, 0] },
|
|
2412
1969
|
"children": [
|
|
2413
1970
|
{
|
|
2414
1971
|
"name": "Post",
|
|
@@ -2416,10 +1973,7 @@
|
|
|
2416
1973
|
"props": {
|
|
2417
1974
|
"mesh": "box",
|
|
2418
1975
|
"size": [0.16, 2.3, 0.16],
|
|
2419
|
-
"material": {
|
|
2420
|
-
"color": "#54402c",
|
|
2421
|
-
"roughness": 0.85
|
|
2422
|
-
},
|
|
1976
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2423
1977
|
"castShadow": true,
|
|
2424
1978
|
"receiveShadow": true,
|
|
2425
1979
|
"position": [0, 1.15, 0]
|
|
@@ -2431,10 +1985,7 @@
|
|
|
2431
1985
|
"props": {
|
|
2432
1986
|
"mesh": "box",
|
|
2433
1987
|
"size": [0.62, 0.12, 0.12],
|
|
2434
|
-
"material": {
|
|
2435
|
-
"color": "#54402c",
|
|
2436
|
-
"roughness": 0.85
|
|
2437
|
-
},
|
|
1988
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2438
1989
|
"castShadow": true,
|
|
2439
1990
|
"receiveShadow": true,
|
|
2440
1991
|
"position": [0.26, 2.24, 0]
|
|
@@ -2446,10 +1997,7 @@
|
|
|
2446
1997
|
"props": {
|
|
2447
1998
|
"mesh": "box",
|
|
2448
1999
|
"size": [0.3, 0.4, 0.3],
|
|
2449
|
-
"material": {
|
|
2450
|
-
"color": "#3c3228",
|
|
2451
|
-
"roughness": 0.6
|
|
2452
|
-
},
|
|
2000
|
+
"material": { "color": "#3c3228", "roughness": 0.6 },
|
|
2453
2001
|
"castShadow": true,
|
|
2454
2002
|
"receiveShadow": true,
|
|
2455
2003
|
"position": [0.5, 2, 0]
|
|
@@ -2477,10 +2025,7 @@
|
|
|
2477
2025
|
{
|
|
2478
2026
|
"name": "Lamp2",
|
|
2479
2027
|
"type": "Node3D",
|
|
2480
|
-
"props": {
|
|
2481
|
-
"position": [4.2, 0, 12.6],
|
|
2482
|
-
"rotation": [0, 150, 0]
|
|
2483
|
-
},
|
|
2028
|
+
"props": { "position": [4.2, 0, 12.6], "rotation": [0, 150, 0] },
|
|
2484
2029
|
"children": [
|
|
2485
2030
|
{
|
|
2486
2031
|
"name": "Post",
|
|
@@ -2488,10 +2033,7 @@
|
|
|
2488
2033
|
"props": {
|
|
2489
2034
|
"mesh": "box",
|
|
2490
2035
|
"size": [0.16, 2.3, 0.16],
|
|
2491
|
-
"material": {
|
|
2492
|
-
"color": "#54402c",
|
|
2493
|
-
"roughness": 0.85
|
|
2494
|
-
},
|
|
2036
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2495
2037
|
"castShadow": true,
|
|
2496
2038
|
"receiveShadow": true,
|
|
2497
2039
|
"position": [0, 1.15, 0]
|
|
@@ -2503,10 +2045,7 @@
|
|
|
2503
2045
|
"props": {
|
|
2504
2046
|
"mesh": "box",
|
|
2505
2047
|
"size": [0.62, 0.12, 0.12],
|
|
2506
|
-
"material": {
|
|
2507
|
-
"color": "#54402c",
|
|
2508
|
-
"roughness": 0.85
|
|
2509
|
-
},
|
|
2048
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2510
2049
|
"castShadow": true,
|
|
2511
2050
|
"receiveShadow": true,
|
|
2512
2051
|
"position": [0.26, 2.24, 0]
|
|
@@ -2518,10 +2057,7 @@
|
|
|
2518
2057
|
"props": {
|
|
2519
2058
|
"mesh": "box",
|
|
2520
2059
|
"size": [0.3, 0.4, 0.3],
|
|
2521
|
-
"material": {
|
|
2522
|
-
"color": "#3c3228",
|
|
2523
|
-
"roughness": 0.6
|
|
2524
|
-
},
|
|
2060
|
+
"material": { "color": "#3c3228", "roughness": 0.6 },
|
|
2525
2061
|
"castShadow": true,
|
|
2526
2062
|
"receiveShadow": true,
|
|
2527
2063
|
"position": [0.5, 2, 0]
|
|
@@ -2549,10 +2085,7 @@
|
|
|
2549
2085
|
{
|
|
2550
2086
|
"name": "Lamp3",
|
|
2551
2087
|
"type": "Node3D",
|
|
2552
|
-
"props": {
|
|
2553
|
-
"position": [-3.4, 0, -7.5],
|
|
2554
|
-
"rotation": [0, -90, 0]
|
|
2555
|
-
},
|
|
2088
|
+
"props": { "position": [-3.4, 0, -7.5], "rotation": [0, -90, 0] },
|
|
2556
2089
|
"children": [
|
|
2557
2090
|
{
|
|
2558
2091
|
"name": "Post",
|
|
@@ -2560,10 +2093,7 @@
|
|
|
2560
2093
|
"props": {
|
|
2561
2094
|
"mesh": "box",
|
|
2562
2095
|
"size": [0.16, 2.3, 0.16],
|
|
2563
|
-
"material": {
|
|
2564
|
-
"color": "#54402c",
|
|
2565
|
-
"roughness": 0.85
|
|
2566
|
-
},
|
|
2096
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2567
2097
|
"castShadow": true,
|
|
2568
2098
|
"receiveShadow": true,
|
|
2569
2099
|
"position": [0, 1.15, 0]
|
|
@@ -2575,10 +2105,7 @@
|
|
|
2575
2105
|
"props": {
|
|
2576
2106
|
"mesh": "box",
|
|
2577
2107
|
"size": [0.62, 0.12, 0.12],
|
|
2578
|
-
"material": {
|
|
2579
|
-
"color": "#54402c",
|
|
2580
|
-
"roughness": 0.85
|
|
2581
|
-
},
|
|
2108
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2582
2109
|
"castShadow": true,
|
|
2583
2110
|
"receiveShadow": true,
|
|
2584
2111
|
"position": [0.26, 2.24, 0]
|
|
@@ -2590,10 +2117,7 @@
|
|
|
2590
2117
|
"props": {
|
|
2591
2118
|
"mesh": "box",
|
|
2592
2119
|
"size": [0.3, 0.4, 0.3],
|
|
2593
|
-
"material": {
|
|
2594
|
-
"color": "#3c3228",
|
|
2595
|
-
"roughness": 0.6
|
|
2596
|
-
},
|
|
2120
|
+
"material": { "color": "#3c3228", "roughness": 0.6 },
|
|
2597
2121
|
"castShadow": true,
|
|
2598
2122
|
"receiveShadow": true,
|
|
2599
2123
|
"position": [0.5, 2, 0]
|
|
@@ -2621,10 +2145,7 @@
|
|
|
2621
2145
|
{
|
|
2622
2146
|
"name": "Stall",
|
|
2623
2147
|
"type": "Node3D",
|
|
2624
|
-
"props": {
|
|
2625
|
-
"position": [-4.6, 0, 8.6],
|
|
2626
|
-
"rotation": [0, 18, 0]
|
|
2627
|
-
},
|
|
2148
|
+
"props": { "position": [-4.6, 0, 8.6], "rotation": [0, 18, 0] },
|
|
2628
2149
|
"children": [
|
|
2629
2150
|
{
|
|
2630
2151
|
"name": "Counter",
|
|
@@ -2632,10 +2153,7 @@
|
|
|
2632
2153
|
"props": {
|
|
2633
2154
|
"mesh": "box",
|
|
2634
2155
|
"size": [2.6, 0.9, 1.1],
|
|
2635
|
-
"material": {
|
|
2636
|
-
"color": "#6b533a",
|
|
2637
|
-
"roughness": 0.85
|
|
2638
|
-
},
|
|
2156
|
+
"material": { "color": "#6b533a", "roughness": 0.85 },
|
|
2639
2157
|
"castShadow": true,
|
|
2640
2158
|
"receiveShadow": true,
|
|
2641
2159
|
"position": [0, 0.45, 0]
|
|
@@ -2647,10 +2165,7 @@
|
|
|
2647
2165
|
"props": {
|
|
2648
2166
|
"mesh": "box",
|
|
2649
2167
|
"size": [2.7, 0.08, 1.2],
|
|
2650
|
-
"material": {
|
|
2651
|
-
"color": "#8a6a44",
|
|
2652
|
-
"roughness": 0.85
|
|
2653
|
-
},
|
|
2168
|
+
"material": { "color": "#8a6a44", "roughness": 0.85 },
|
|
2654
2169
|
"castShadow": true,
|
|
2655
2170
|
"receiveShadow": true,
|
|
2656
2171
|
"position": [0, 0.93, 0]
|
|
@@ -2662,10 +2177,7 @@
|
|
|
2662
2177
|
"props": {
|
|
2663
2178
|
"mesh": "box",
|
|
2664
2179
|
"size": [0.1, 2.2, 0.1],
|
|
2665
|
-
"material": {
|
|
2666
|
-
"color": "#54402c",
|
|
2667
|
-
"roughness": 0.85
|
|
2668
|
-
},
|
|
2180
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2669
2181
|
"castShadow": true,
|
|
2670
2182
|
"receiveShadow": true,
|
|
2671
2183
|
"position": [-1.2, 1.1, -0.45]
|
|
@@ -2677,10 +2189,7 @@
|
|
|
2677
2189
|
"props": {
|
|
2678
2190
|
"mesh": "box",
|
|
2679
2191
|
"size": [0.1, 2.2, 0.1],
|
|
2680
|
-
"material": {
|
|
2681
|
-
"color": "#54402c",
|
|
2682
|
-
"roughness": 0.85
|
|
2683
|
-
},
|
|
2192
|
+
"material": { "color": "#54402c", "roughness": 0.85 },
|
|
2684
2193
|
"castShadow": true,
|
|
2685
2194
|
"receiveShadow": true,
|
|
2686
2195
|
"position": [1.2, 1.1, -0.45]
|
|
@@ -2692,10 +2201,7 @@
|
|
|
2692
2201
|
"props": {
|
|
2693
2202
|
"mesh": "box",
|
|
2694
2203
|
"size": [2.9, 0.06, 1.9],
|
|
2695
|
-
"material": {
|
|
2696
|
-
"color": "#a33d34",
|
|
2697
|
-
"roughness": 0.8
|
|
2698
|
-
},
|
|
2204
|
+
"material": { "color": "#a33d34", "roughness": 0.8 },
|
|
2699
2205
|
"castShadow": true,
|
|
2700
2206
|
"receiveShadow": true,
|
|
2701
2207
|
"position": [0, 2.18, 0.25],
|
|
@@ -2708,10 +2214,7 @@
|
|
|
2708
2214
|
"props": {
|
|
2709
2215
|
"mesh": "box",
|
|
2710
2216
|
"size": [2.92, 0.06, 0.5],
|
|
2711
|
-
"material": {
|
|
2712
|
-
"color": "#e8ddc4",
|
|
2713
|
-
"roughness": 0.8
|
|
2714
|
-
},
|
|
2217
|
+
"material": { "color": "#e8ddc4", "roughness": 0.8 },
|
|
2715
2218
|
"castShadow": false,
|
|
2716
2219
|
"receiveShadow": true,
|
|
2717
2220
|
"position": [0, 2.181, 0.25],
|
|
@@ -2724,10 +2227,7 @@
|
|
|
2724
2227
|
"props": {
|
|
2725
2228
|
"mesh": "sphere",
|
|
2726
2229
|
"size": [0.16, 0.16, 0.16],
|
|
2727
|
-
"material": {
|
|
2728
|
-
"color": "#c8542e",
|
|
2729
|
-
"roughness": 0.6
|
|
2730
|
-
},
|
|
2230
|
+
"material": { "color": "#c8542e", "roughness": 0.6 },
|
|
2731
2231
|
"castShadow": false,
|
|
2732
2232
|
"receiveShadow": true,
|
|
2733
2233
|
"position": [-0.5, 1.06, 0.1]
|
|
@@ -2739,10 +2239,7 @@
|
|
|
2739
2239
|
"props": {
|
|
2740
2240
|
"mesh": "sphere",
|
|
2741
2241
|
"size": [0.14, 0.14, 0.14],
|
|
2742
|
-
"material": {
|
|
2743
|
-
"color": "#d9a032",
|
|
2744
|
-
"roughness": 0.6
|
|
2745
|
-
},
|
|
2242
|
+
"material": { "color": "#d9a032", "roughness": 0.6 },
|
|
2746
2243
|
"castShadow": false,
|
|
2747
2244
|
"receiveShadow": true,
|
|
2748
2245
|
"position": [-0.16, 1.04, -0.2]
|
|
@@ -2754,10 +2251,7 @@
|
|
|
2754
2251
|
"props": {
|
|
2755
2252
|
"mesh": "sphere",
|
|
2756
2253
|
"size": [0.15, 0.15, 0.15],
|
|
2757
|
-
"material": {
|
|
2758
|
-
"color": "#7ba03a",
|
|
2759
|
-
"roughness": 0.6
|
|
2760
|
-
},
|
|
2254
|
+
"material": { "color": "#7ba03a", "roughness": 0.6 },
|
|
2761
2255
|
"castShadow": false,
|
|
2762
2256
|
"receiveShadow": true,
|
|
2763
2257
|
"position": [0.2, 1.05, 0.14]
|
|
@@ -2768,9 +2262,7 @@
|
|
|
2768
2262
|
{
|
|
2769
2263
|
"name": "Barrel1",
|
|
2770
2264
|
"type": "Node3D",
|
|
2771
|
-
"props": {
|
|
2772
|
-
"position": [-7.2, 0, 4.2]
|
|
2773
|
-
},
|
|
2265
|
+
"props": { "position": [-7.2, 0, 4.2] },
|
|
2774
2266
|
"children": [
|
|
2775
2267
|
{
|
|
2776
2268
|
"name": "Body",
|
|
@@ -2778,10 +2270,7 @@
|
|
|
2778
2270
|
"props": {
|
|
2779
2271
|
"mesh": "cylinder",
|
|
2780
2272
|
"size": [0.34, 0.78, 0.34],
|
|
2781
|
-
"material": {
|
|
2782
|
-
"color": "#7a5c3c",
|
|
2783
|
-
"roughness": 0.9
|
|
2784
|
-
},
|
|
2273
|
+
"material": { "color": "#7a5c3c", "roughness": 0.9 },
|
|
2785
2274
|
"castShadow": true,
|
|
2786
2275
|
"receiveShadow": true,
|
|
2787
2276
|
"position": [0, 0.39, 0]
|
|
@@ -2793,11 +2282,7 @@
|
|
|
2793
2282
|
"props": {
|
|
2794
2283
|
"mesh": "cylinder",
|
|
2795
2284
|
"size": [0.36, 0.06, 0.36],
|
|
2796
|
-
"material": {
|
|
2797
|
-
"color": "#3a332c",
|
|
2798
|
-
"roughness": 0.5,
|
|
2799
|
-
"metalness": 0.6
|
|
2800
|
-
},
|
|
2285
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2801
2286
|
"castShadow": false,
|
|
2802
2287
|
"receiveShadow": true,
|
|
2803
2288
|
"position": [0, 0.62, 0]
|
|
@@ -2809,11 +2294,7 @@
|
|
|
2809
2294
|
"props": {
|
|
2810
2295
|
"mesh": "cylinder",
|
|
2811
2296
|
"size": [0.36, 0.06, 0.36],
|
|
2812
|
-
"material": {
|
|
2813
|
-
"color": "#3a332c",
|
|
2814
|
-
"roughness": 0.5,
|
|
2815
|
-
"metalness": 0.6
|
|
2816
|
-
},
|
|
2297
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2817
2298
|
"castShadow": false,
|
|
2818
2299
|
"receiveShadow": true,
|
|
2819
2300
|
"position": [0, 0.18, 0]
|
|
@@ -2824,9 +2305,7 @@
|
|
|
2824
2305
|
{
|
|
2825
2306
|
"name": "Barrel2",
|
|
2826
2307
|
"type": "Node3D",
|
|
2827
|
-
"props": {
|
|
2828
|
-
"position": [-6.6, 0, 4.9]
|
|
2829
|
-
},
|
|
2308
|
+
"props": { "position": [-6.6, 0, 4.9] },
|
|
2830
2309
|
"children": [
|
|
2831
2310
|
{
|
|
2832
2311
|
"name": "Body",
|
|
@@ -2834,10 +2313,7 @@
|
|
|
2834
2313
|
"props": {
|
|
2835
2314
|
"mesh": "cylinder",
|
|
2836
2315
|
"size": [0.34, 0.78, 0.34],
|
|
2837
|
-
"material": {
|
|
2838
|
-
"color": "#7a5c3c",
|
|
2839
|
-
"roughness": 0.9
|
|
2840
|
-
},
|
|
2316
|
+
"material": { "color": "#7a5c3c", "roughness": 0.9 },
|
|
2841
2317
|
"castShadow": true,
|
|
2842
2318
|
"receiveShadow": true,
|
|
2843
2319
|
"position": [0, 0.39, 0]
|
|
@@ -2849,11 +2325,7 @@
|
|
|
2849
2325
|
"props": {
|
|
2850
2326
|
"mesh": "cylinder",
|
|
2851
2327
|
"size": [0.36, 0.06, 0.36],
|
|
2852
|
-
"material": {
|
|
2853
|
-
"color": "#3a332c",
|
|
2854
|
-
"roughness": 0.5,
|
|
2855
|
-
"metalness": 0.6
|
|
2856
|
-
},
|
|
2328
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2857
2329
|
"castShadow": false,
|
|
2858
2330
|
"receiveShadow": true,
|
|
2859
2331
|
"position": [0, 0.62, 0]
|
|
@@ -2865,11 +2337,7 @@
|
|
|
2865
2337
|
"props": {
|
|
2866
2338
|
"mesh": "cylinder",
|
|
2867
2339
|
"size": [0.36, 0.06, 0.36],
|
|
2868
|
-
"material": {
|
|
2869
|
-
"color": "#3a332c",
|
|
2870
|
-
"roughness": 0.5,
|
|
2871
|
-
"metalness": 0.6
|
|
2872
|
-
},
|
|
2340
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2873
2341
|
"castShadow": false,
|
|
2874
2342
|
"receiveShadow": true,
|
|
2875
2343
|
"position": [0, 0.18, 0]
|
|
@@ -2880,9 +2348,7 @@
|
|
|
2880
2348
|
{
|
|
2881
2349
|
"name": "Barrel3",
|
|
2882
2350
|
"type": "Node3D",
|
|
2883
|
-
"props": {
|
|
2884
|
-
"position": [8.9, 0, -4.6]
|
|
2885
|
-
},
|
|
2351
|
+
"props": { "position": [8.9, 0, -4.6] },
|
|
2886
2352
|
"children": [
|
|
2887
2353
|
{
|
|
2888
2354
|
"name": "Body",
|
|
@@ -2890,10 +2356,7 @@
|
|
|
2890
2356
|
"props": {
|
|
2891
2357
|
"mesh": "cylinder",
|
|
2892
2358
|
"size": [0.34, 0.78, 0.34],
|
|
2893
|
-
"material": {
|
|
2894
|
-
"color": "#7a5c3c",
|
|
2895
|
-
"roughness": 0.9
|
|
2896
|
-
},
|
|
2359
|
+
"material": { "color": "#7a5c3c", "roughness": 0.9 },
|
|
2897
2360
|
"castShadow": true,
|
|
2898
2361
|
"receiveShadow": true,
|
|
2899
2362
|
"position": [0, 0.39, 0]
|
|
@@ -2905,11 +2368,7 @@
|
|
|
2905
2368
|
"props": {
|
|
2906
2369
|
"mesh": "cylinder",
|
|
2907
2370
|
"size": [0.36, 0.06, 0.36],
|
|
2908
|
-
"material": {
|
|
2909
|
-
"color": "#3a332c",
|
|
2910
|
-
"roughness": 0.5,
|
|
2911
|
-
"metalness": 0.6
|
|
2912
|
-
},
|
|
2371
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2913
2372
|
"castShadow": false,
|
|
2914
2373
|
"receiveShadow": true,
|
|
2915
2374
|
"position": [0, 0.62, 0]
|
|
@@ -2921,11 +2380,7 @@
|
|
|
2921
2380
|
"props": {
|
|
2922
2381
|
"mesh": "cylinder",
|
|
2923
2382
|
"size": [0.36, 0.06, 0.36],
|
|
2924
|
-
"material": {
|
|
2925
|
-
"color": "#3a332c",
|
|
2926
|
-
"roughness": 0.5,
|
|
2927
|
-
"metalness": 0.6
|
|
2928
|
-
},
|
|
2383
|
+
"material": { "color": "#3a332c", "roughness": 0.5, "metalness": 0.6 },
|
|
2929
2384
|
"castShadow": false,
|
|
2930
2385
|
"receiveShadow": true,
|
|
2931
2386
|
"position": [0, 0.18, 0]
|
|
@@ -2939,11 +2394,7 @@
|
|
|
2939
2394
|
"props": {
|
|
2940
2395
|
"mesh": "box",
|
|
2941
2396
|
"size": [0.62, 0.62, 0.62],
|
|
2942
|
-
"material": {
|
|
2943
|
-
"color": "#9c7c50",
|
|
2944
|
-
"roughness": 0.9,
|
|
2945
|
-
"flatShading": true
|
|
2946
|
-
},
|
|
2397
|
+
"material": { "color": "#9c7c50", "roughness": 0.9, "flatShading": true },
|
|
2947
2398
|
"castShadow": true,
|
|
2948
2399
|
"receiveShadow": true,
|
|
2949
2400
|
"position": [8.2, 0.31, -5.4],
|
|
@@ -2956,11 +2407,7 @@
|
|
|
2956
2407
|
"props": {
|
|
2957
2408
|
"mesh": "box",
|
|
2958
2409
|
"size": [0.5, 0.5, 0.5],
|
|
2959
|
-
"material": {
|
|
2960
|
-
"color": "#9c7c50",
|
|
2961
|
-
"roughness": 0.9,
|
|
2962
|
-
"flatShading": true
|
|
2963
|
-
},
|
|
2410
|
+
"material": { "color": "#9c7c50", "roughness": 0.9, "flatShading": true },
|
|
2964
2411
|
"castShadow": true,
|
|
2965
2412
|
"receiveShadow": true,
|
|
2966
2413
|
"position": [8.5, 0.25, -4.5],
|
|
@@ -2973,11 +2420,7 @@
|
|
|
2973
2420
|
"props": {
|
|
2974
2421
|
"mesh": "box",
|
|
2975
2422
|
"size": [0.55, 0.55, 0.55],
|
|
2976
|
-
"material": {
|
|
2977
|
-
"color": "#9c7c50",
|
|
2978
|
-
"roughness": 0.9,
|
|
2979
|
-
"flatShading": true
|
|
2980
|
-
},
|
|
2423
|
+
"material": { "color": "#9c7c50", "roughness": 0.9, "flatShading": true },
|
|
2981
2424
|
"castShadow": true,
|
|
2982
2425
|
"receiveShadow": true,
|
|
2983
2426
|
"position": [-7, 0.275, 5.8],
|
|
@@ -3097,20 +2540,12 @@
|
|
|
3097
2540
|
{
|
|
3098
2541
|
"name": "Oak2",
|
|
3099
2542
|
"type": "Tree3D",
|
|
3100
|
-
"props": {
|
|
3101
|
-
"position": [17, 0, 6],
|
|
3102
|
-
"type": "broadleaf",
|
|
3103
|
-
"seed": 23
|
|
3104
|
-
}
|
|
2543
|
+
"props": { "position": [17, 0, 6], "type": "broadleaf", "seed": 23 }
|
|
3105
2544
|
},
|
|
3106
2545
|
{
|
|
3107
2546
|
"name": "Oak3",
|
|
3108
2547
|
"type": "Tree3D",
|
|
3109
|
-
"props": {
|
|
3110
|
-
"position": [-14, 0, 14],
|
|
3111
|
-
"type": "broadleaf",
|
|
3112
|
-
"seed": 31
|
|
3113
|
-
}
|
|
2548
|
+
"props": { "position": [-14, 0, 14], "type": "broadleaf", "seed": 31 }
|
|
3114
2549
|
},
|
|
3115
2550
|
{
|
|
3116
2551
|
"name": "Oak4",
|
|
@@ -3180,29 +2615,17 @@
|
|
|
3180
2615
|
{
|
|
3181
2616
|
"name": "Bush1",
|
|
3182
2617
|
"type": "Tree3D",
|
|
3183
|
-
"props": {
|
|
3184
|
-
"position": [-7.4, 0, 0.4],
|
|
3185
|
-
"type": "bush",
|
|
3186
|
-
"seed": 5
|
|
3187
|
-
}
|
|
2618
|
+
"props": { "position": [-7.4, 0, 0.4], "type": "bush", "seed": 5 }
|
|
3188
2619
|
},
|
|
3189
2620
|
{
|
|
3190
2621
|
"name": "Bush2",
|
|
3191
2622
|
"type": "Tree3D",
|
|
3192
|
-
"props": {
|
|
3193
|
-
"position": [9.2, 0, 1.8],
|
|
3194
|
-
"type": "bush",
|
|
3195
|
-
"seed": 15
|
|
3196
|
-
}
|
|
2623
|
+
"props": { "position": [9.2, 0, 1.8], "type": "bush", "seed": 15 }
|
|
3197
2624
|
},
|
|
3198
2625
|
{
|
|
3199
2626
|
"name": "Bush3",
|
|
3200
2627
|
"type": "Tree3D",
|
|
3201
|
-
"props": {
|
|
3202
|
-
"position": [1.6, 0, -24.2],
|
|
3203
|
-
"type": "bush",
|
|
3204
|
-
"seed": 25
|
|
3205
|
-
}
|
|
2628
|
+
"props": { "position": [1.6, 0, -24.2], "type": "bush", "seed": 25 }
|
|
3206
2629
|
},
|
|
3207
2630
|
{
|
|
3208
2631
|
"name": "Sun",
|
|
@@ -3230,16 +2653,8 @@
|
|
|
3230
2653
|
{
|
|
3231
2654
|
"name": "Elder",
|
|
3232
2655
|
"type": "Node3D",
|
|
3233
|
-
"props": {
|
|
3234
|
-
|
|
3235
|
-
},
|
|
3236
|
-
"script": {
|
|
3237
|
-
"name": "Interactable",
|
|
3238
|
-
"props": {
|
|
3239
|
-
"action": "interact",
|
|
3240
|
-
"range": 2.8
|
|
3241
|
-
}
|
|
3242
|
-
},
|
|
2656
|
+
"props": { "position": [3, 0, -2] },
|
|
2657
|
+
"script": { "name": "Interactable", "props": { "action": "interact", "range": 2.8 } },
|
|
3243
2658
|
"children": [
|
|
3244
2659
|
{
|
|
3245
2660
|
"name": "Body",
|
|
@@ -3256,10 +2671,7 @@
|
|
|
3256
2671
|
{
|
|
3257
2672
|
"name": "Marker",
|
|
3258
2673
|
"type": "Billboard3D",
|
|
3259
|
-
"props": {
|
|
3260
|
-
"position": [0, 2.15, 0],
|
|
3261
|
-
"mode": "y"
|
|
3262
|
-
},
|
|
2674
|
+
"props": { "position": [0, 2.15, 0], "mode": "y" },
|
|
3263
2675
|
"children": [
|
|
3264
2676
|
{
|
|
3265
2677
|
"name": "Bang",
|
|
@@ -3279,19 +2691,12 @@
|
|
|
3279
2691
|
{
|
|
3280
2692
|
"name": "TalkSfx",
|
|
3281
2693
|
"type": "AudioPlayer",
|
|
3282
|
-
"props": {
|
|
3283
|
-
"preset": "blip",
|
|
3284
|
-
"volume": 0.5,
|
|
3285
|
-
"pitch": 0.9
|
|
3286
|
-
}
|
|
2694
|
+
"props": { "preset": "blip", "volume": 0.5, "pitch": 0.9 }
|
|
3287
2695
|
},
|
|
3288
2696
|
{
|
|
3289
2697
|
"name": "AcceptSfx",
|
|
3290
2698
|
"type": "AudioPlayer",
|
|
3291
|
-
"props": {
|
|
3292
|
-
"preset": "coin",
|
|
3293
|
-
"volume": 0.5
|
|
3294
|
-
}
|
|
2699
|
+
"props": { "preset": "coin", "volume": 0.5 }
|
|
3295
2700
|
}
|
|
3296
2701
|
],
|
|
3297
2702
|
"uid": "n_d5ztstoy2cc94xqw"
|
|
@@ -3301,10 +2706,7 @@
|
|
|
3301
2706
|
"type": "Area3D",
|
|
3302
2707
|
"props": {
|
|
3303
2708
|
"position": [0, 1.5, -26.5],
|
|
3304
|
-
"collider": {
|
|
3305
|
-
"shape": "box",
|
|
3306
|
-
"size": [4, 3, 1.6]
|
|
3307
|
-
}
|
|
2709
|
+
"collider": { "shape": "box", "size": [4, 3, 1.6] }
|
|
3308
2710
|
}
|
|
3309
2711
|
},
|
|
3310
2712
|
{
|
|
@@ -3315,11 +2717,7 @@
|
|
|
3315
2717
|
"position": [0, 1.4, 10],
|
|
3316
2718
|
"fixedRotation": true,
|
|
3317
2719
|
"friction": 0,
|
|
3318
|
-
"collider": {
|
|
3319
|
-
"shape": "capsule",
|
|
3320
|
-
"radius": 0.34,
|
|
3321
|
-
"height": 1
|
|
3322
|
-
}
|
|
2720
|
+
"collider": { "shape": "capsule", "radius": 0.34, "height": 1 }
|
|
3323
2721
|
},
|
|
3324
2722
|
"children": [
|
|
3325
2723
|
{
|
|
@@ -3343,9 +2741,7 @@
|
|
|
3343
2741
|
"coyoteSeconds": 0.12,
|
|
3344
2742
|
"jumpBufferSeconds": 0.15
|
|
3345
2743
|
},
|
|
3346
|
-
"script": {
|
|
3347
|
-
"name": "SwordStrike"
|
|
3348
|
-
},
|
|
2744
|
+
"script": { "name": "SwordStrike" },
|
|
3349
2745
|
"uid": "n_4nm8dbrf8lwe34mn"
|
|
3350
2746
|
},
|
|
3351
2747
|
{
|
|
@@ -3362,10 +2758,7 @@
|
|
|
3362
2758
|
{
|
|
3363
2759
|
"name": "SwordMount",
|
|
3364
2760
|
"type": "BoneAttachment3D",
|
|
3365
|
-
"props": {
|
|
3366
|
-
"target": "../Skin",
|
|
3367
|
-
"bone": "RightHand"
|
|
3368
|
-
},
|
|
2761
|
+
"props": { "target": "../Skin", "bone": "RightHand" },
|
|
3369
2762
|
"children": [
|
|
3370
2763
|
{
|
|
3371
2764
|
"name": "Blade",
|
|
@@ -3374,11 +2767,7 @@
|
|
|
3374
2767
|
"mesh": "box",
|
|
3375
2768
|
"size": [0.045, 0.7, 0.045],
|
|
3376
2769
|
"position": [0, 0.42, 0],
|
|
3377
|
-
"material": {
|
|
3378
|
-
"color": "#d8dde8",
|
|
3379
|
-
"metalness": 0.9,
|
|
3380
|
-
"roughness": 0.25
|
|
3381
|
-
},
|
|
2770
|
+
"material": { "color": "#d8dde8", "metalness": 0.9, "roughness": 0.25 },
|
|
3382
2771
|
"castShadow": true
|
|
3383
2772
|
}
|
|
3384
2773
|
},
|
|
@@ -3389,19 +2778,13 @@
|
|
|
3389
2778
|
"mesh": "box",
|
|
3390
2779
|
"size": [0.16, 0.04, 0.06],
|
|
3391
2780
|
"position": [0, 0.09, 0],
|
|
3392
|
-
"material": {
|
|
3393
|
-
"color": "#8a6d3a",
|
|
3394
|
-
"metalness": 0.7,
|
|
3395
|
-
"roughness": 0.4
|
|
3396
|
-
}
|
|
2781
|
+
"material": { "color": "#8a6d3a", "metalness": 0.7, "roughness": 0.4 }
|
|
3397
2782
|
}
|
|
3398
2783
|
},
|
|
3399
2784
|
{
|
|
3400
2785
|
"name": "SwordTip",
|
|
3401
2786
|
"type": "Node3D",
|
|
3402
|
-
"props": {
|
|
3403
|
-
"position": [0, 0.78, 0]
|
|
3404
|
-
},
|
|
2787
|
+
"props": { "position": [0, 0.78, 0] },
|
|
3405
2788
|
"children": [
|
|
3406
2789
|
{
|
|
3407
2790
|
"name": "SwingTrail",
|
|
@@ -3423,33 +2806,16 @@
|
|
|
3423
2806
|
{
|
|
3424
2807
|
"name": "SwingSfx",
|
|
3425
2808
|
"type": "AudioPlayer",
|
|
3426
|
-
"props": {
|
|
3427
|
-
"preset": "shoot",
|
|
3428
|
-
"volume": 0.35,
|
|
3429
|
-
"pitch": 0.55
|
|
3430
|
-
}
|
|
3431
|
-
},
|
|
3432
|
-
{
|
|
3433
|
-
"name": "HitSfx",
|
|
3434
|
-
"type": "AudioPlayer",
|
|
3435
|
-
"props": {
|
|
3436
|
-
"preset": "hit",
|
|
3437
|
-
"volume": 0.6
|
|
3438
|
-
}
|
|
2809
|
+
"props": { "preset": "shoot", "volume": 0.35, "pitch": 0.55 }
|
|
3439
2810
|
},
|
|
3440
|
-
{
|
|
3441
|
-
|
|
3442
|
-
"type": "Respawn"
|
|
3443
|
-
}
|
|
2811
|
+
{ "name": "HitSfx", "type": "AudioPlayer", "props": { "preset": "hit", "volume": 0.6 } },
|
|
2812
|
+
{ "name": "Catch", "type": "Respawn" }
|
|
3444
2813
|
]
|
|
3445
2814
|
},
|
|
3446
2815
|
{
|
|
3447
2816
|
"name": "Camera",
|
|
3448
2817
|
"type": "Camera3D",
|
|
3449
|
-
"props": {
|
|
3450
|
-
"current": true,
|
|
3451
|
-
"position": [0, 4, 16]
|
|
3452
|
-
}
|
|
2818
|
+
"props": { "current": true, "position": [0, 4, 16] }
|
|
3453
2819
|
},
|
|
3454
2820
|
{
|
|
3455
2821
|
"name": "HUD",
|
|
@@ -3470,28 +2836,19 @@
|
|
|
3470
2836
|
"name": "Banner",
|
|
3471
2837
|
"type": "UiBanner",
|
|
3472
2838
|
"uid": "n_rqkjlucsenuwggtc",
|
|
3473
|
-
"props": {
|
|
3474
|
-
"anchor": "center"
|
|
3475
|
-
}
|
|
2839
|
+
"props": { "anchor": "center" }
|
|
3476
2840
|
},
|
|
3477
2841
|
{
|
|
3478
2842
|
"name": "Dialogue",
|
|
3479
2843
|
"type": "UiDialogue",
|
|
3480
2844
|
"uid": "n_ui4xf7paa0mgjzmh",
|
|
3481
|
-
"props": {
|
|
3482
|
-
"anchor": "bottom",
|
|
3483
|
-
"charsPerSecond": 45
|
|
3484
|
-
}
|
|
2845
|
+
"props": { "anchor": "bottom", "charsPerSecond": 45 }
|
|
3485
2846
|
},
|
|
3486
2847
|
{
|
|
3487
2848
|
"name": "RestartBtn",
|
|
3488
2849
|
"type": "UiButton",
|
|
3489
2850
|
"uid": "n_5eupths7miw4jilp",
|
|
3490
|
-
"props": {
|
|
3491
|
-
"text": "@t:ui.playAgain",
|
|
3492
|
-
"anchor": "bottom",
|
|
3493
|
-
"visible": false
|
|
3494
|
-
}
|
|
2851
|
+
"props": { "text": "@t:ui.playAgain", "anchor": "bottom", "visible": false }
|
|
3495
2852
|
},
|
|
3496
2853
|
{
|
|
3497
2854
|
"name": "Hint",
|
|
@@ -3509,10 +2866,7 @@
|
|
|
3509
2866
|
"name": "Language",
|
|
3510
2867
|
"type": "UiLanguageSelect",
|
|
3511
2868
|
"uid": "n_4m6tsfl0og3ekii3",
|
|
3512
|
-
"props": {
|
|
3513
|
-
"label": "@t:settings.language",
|
|
3514
|
-
"anchor": "topRight"
|
|
3515
|
-
}
|
|
2869
|
+
"props": { "label": "@t:settings.language", "anchor": "topRight" }
|
|
3516
2870
|
}
|
|
3517
2871
|
]
|
|
3518
2872
|
}
|
|
@@ -3520,23 +2874,8 @@
|
|
|
3520
2874
|
"uid": "n_2a2pghqmq92ko29c"
|
|
3521
2875
|
},
|
|
3522
2876
|
"connections": [
|
|
3523
|
-
{
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
"to": "/root",
|
|
3527
|
-
"handler": "onTalk"
|
|
3528
|
-
},
|
|
3529
|
-
{
|
|
3530
|
-
"signal": "triggerEnter",
|
|
3531
|
-
"from": "GroveGate",
|
|
3532
|
-
"to": "/root",
|
|
3533
|
-
"handler": "onGateEnter"
|
|
3534
|
-
},
|
|
3535
|
-
{
|
|
3536
|
-
"signal": "pressed",
|
|
3537
|
-
"from": "HUD/RestartBtn",
|
|
3538
|
-
"to": "/root",
|
|
3539
|
-
"handler": "onRestart"
|
|
3540
|
-
}
|
|
2877
|
+
{ "signal": "interacted", "from": "Elder", "to": "/root", "handler": "onTalk" },
|
|
2878
|
+
{ "signal": "triggerEnter", "from": "GroveGate", "to": "/root", "handler": "onGateEnter" },
|
|
2879
|
+
{ "signal": "pressed", "from": "HUD/RestartBtn", "to": "/root", "handler": "onRestart" }
|
|
3541
2880
|
]
|
|
3542
2881
|
}
|