Optimize buildings
34
Makefile
@@ -3,7 +3,7 @@ SERVER = src/godot/bin/godot_server.x11.opt.tools.64
|
|||||||
|
|
||||||
.PHONY: all godot-editor-main export export-models export-clothes \
|
.PHONY: all godot-editor-main export export-models export-clothes \
|
||||||
export-clean export-linux-demo export-windows-demo \
|
export-clean export-linux-demo export-windows-demo \
|
||||||
export-binaries patch tests import-vrm
|
export-binaries patch tests import-vrm export-buildings
|
||||||
all: godot-editor-main godot-main
|
all: godot-editor-main godot-main
|
||||||
ARCH=$(patsubst aarch64,arm64,$(shell uname -m))
|
ARCH=$(patsubst aarch64,arm64,$(shell uname -m))
|
||||||
godot-main: patch
|
godot-main: patch
|
||||||
@@ -38,6 +38,38 @@ import-vrm: install-addons export-clean
|
|||||||
export2edit: import-vrm
|
export2edit: import-vrm
|
||||||
$(BLENDER) -b -Y -P assets/blender/scripts/export_for_modelling.py
|
$(BLENDER) -b -Y -P assets/blender/scripts/export_for_modelling.py
|
||||||
|
|
||||||
|
BLENDDIR_BUILDINGS=assets/blender/buildings
|
||||||
|
GLTFDIR_BUILDINGS=godot/astream/terrain/details
|
||||||
|
BUILDINGS_BUSINNESS=business-bar1 business-cafe1 business-office1 buisness-store1
|
||||||
|
BUILDINGS_RESIDENTAL=residental-house1 residental-house2 residental-house \
|
||||||
|
residental-house4 residental-house5 residental-house6 \
|
||||||
|
residental-house7 residental-house8 residental-house9 \
|
||||||
|
residental-house10 residental-house11 residental-house13 \
|
||||||
|
residental-hut1 residental-garage-door \
|
||||||
|
residental-garage-enterance residental-garage \
|
||||||
|
residental-parking residental-wall1 residental-wall-corner
|
||||||
|
BUILDINGS_MAIN=gym-exterior home-exterior logistics-center-exterior office-exterior townhall-exterior
|
||||||
|
|
||||||
|
|
||||||
|
BUILDINGS=bus-stop power-in-box power-pole power-pole-wire $(BUILDINGS_BUSINESS) \
|
||||||
|
$(BUILDINGS_RESIDENTAL) $(BUILDINGS_MAIN)
|
||||||
|
zebra
|
||||||
|
|
||||||
|
define export_building
|
||||||
|
$(GLTFDIR_BUILDINGS)/$(1).gltf: $(BLENDDIR_BUILDINGS)/$(1).blend
|
||||||
|
$(BLENDER) -b $(BLENDDIR_BUILDINGS)/$(1).blend -P /home/slapin/godot-projects/streaming_world/assets/blender/scripts/export_buildings.py -- $(GLTFDIR_BUILDINGS)/$(1).gltf
|
||||||
|
ALL_BUILDINGS += $(GLTFDIR_BUILDINGS)/$(1).gltf
|
||||||
|
CLEAN_BUILDINGS += $(GLTFDIR_BUILDINGS)/$(1).gltf \
|
||||||
|
$(GLTFDIR_BUILDINGS)/$(1).bin
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(foreach prog,$(BUILDINGS),$(eval $(call export_building,$(prog))))
|
||||||
|
|
||||||
|
export-buildings: $(ALL_BUILDINGS)
|
||||||
|
@echo $(ALL_BUILDINGS)
|
||||||
|
clean-buildings:
|
||||||
|
rm -f $(CLEAN_BUILDINGS) $(GLTFDIR_BUILDINGS)/material_atlas*.material
|
||||||
|
|
||||||
export-models: export-clean import-vrm
|
export-models: export-clean import-vrm
|
||||||
$(BLENDER) -b -Y -P assets/blender/scripts/export_models.py
|
$(BLENDER) -b -Y -P assets/blender/scripts/export_models.py
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.9 KiB |
BIN
assets/blender/buildings/joint-atlas-1-roughness.kra
Normal file
BIN
assets/blender/buildings/joint-atlas-1-roughness.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/blender/buildings/joint-atlas-1-specular.kra
Normal file
BIN
assets/blender/buildings/joint-atlas-1-specular.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/blender/buildings/joint-atlas-1.kra
Normal file
BIN
assets/blender/buildings/joint-atlas-1.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
assets/blender/buildings/power-in-box.blend
Normal file
BIN
assets/blender/buildings/power-pole-wire.blend
Normal file
BIN
assets/blender/buildings/power-pole.blend
Normal file
47
assets/blender/scripts/export_buildings.py
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import os, sys, time
|
||||||
|
import bpy
|
||||||
|
from math import pi
|
||||||
|
import glob
|
||||||
|
import shutil
|
||||||
|
from mathutils import Vector, Matrix
|
||||||
|
from math import radians, pi
|
||||||
|
|
||||||
|
argv = sys.argv
|
||||||
|
argv = argv[argv.index("--") + 1:]
|
||||||
|
|
||||||
|
sys.path.insert(0, os.getcwd() + "/assets/blender/scripts")
|
||||||
|
|
||||||
|
gltf_file = argv[0]
|
||||||
|
print("Exporting to " + gltf_file)
|
||||||
|
basepath = os.getcwd()
|
||||||
|
bpy.ops.export_scene.gltf(filepath=gltf_file,
|
||||||
|
use_selection=False,
|
||||||
|
check_existing=False,
|
||||||
|
export_format='GLTF_SEPARATE',
|
||||||
|
export_texture_dir='textures', export_texcoords=True,
|
||||||
|
export_normals=True,
|
||||||
|
export_tangents=True,
|
||||||
|
export_materials='EXPORT',
|
||||||
|
export_colors=True,
|
||||||
|
use_mesh_edges=False,
|
||||||
|
use_mesh_vertices=False,
|
||||||
|
export_cameras=False,
|
||||||
|
use_visible=False,
|
||||||
|
use_renderable=False,
|
||||||
|
export_yup=True,
|
||||||
|
export_animations=True,
|
||||||
|
export_force_sampling=True,
|
||||||
|
export_def_bones=False,
|
||||||
|
export_current_frame=False,
|
||||||
|
export_morph=True,
|
||||||
|
export_morph_animation=False,
|
||||||
|
export_morph_normal=True,
|
||||||
|
export_morph_tangent=True,
|
||||||
|
export_lights=False,
|
||||||
|
export_skins=True)
|
||||||
|
|
||||||
|
bpy.ops.wm.read_homefile(use_empty=True)
|
||||||
|
time.sleep(2)
|
||||||
|
bpy.ops.wm.quit_blender()
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_00001.png-2bd220c65a96f77c66f39c375820bfe1.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_00001.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_00001.png-2bd220c65a96f77c66f39c375820bfe1.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 341 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_00005.png-e494ea23647a26f5b6d02766c05fe6ca.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_00005.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_00005.png-e494ea23647a26f5b6d02766c05fe6ca.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 276 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_00006.png-37f4e0d8bc33ff5ad5e4713880240781.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_00006.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_00006.png-37f4e0d8bc33ff5ad5e4713880240781.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 346 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_12696.png-fa4a924572a2c1f6518ce746cc529768.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_12696.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_12696.png-fa4a924572a2c1f6518ce746cc529768.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 431 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_32944.png-ee0606af55bc78281fe6e4334c93debe.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_32944.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_32944.png-ee0606af55bc78281fe6e4334c93debe.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 437 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_36953.png-f150f72114427818f37a6e106d2d5860.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_36953.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_36953.png-f150f72114427818f37a6e106d2d5860.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 517 B |
@@ -1,35 +0,0 @@
|
|||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/Atlas_52716.png-1b565d8cf1be1af09d0a8567a006b42d.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://astream/terrain/details/Atlas_52716.png"
|
|
||||||
dest_files=[ "res://.import/Atlas_52716.png-1b565d8cf1be1af09d0a8567a006b42d.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=true
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=true
|
|
||||||
svg/scale=1.0
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -73,7 +73,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_73934",
|
"name":"Atlas_73934",
|
||||||
"uri":"Atlas_73934.png"
|
"uri":"textures/Atlas_73934.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -387,9 +387,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":24,
|
"POSITION":24,
|
||||||
"NORMAL":25,
|
"NORMAL":25,
|
||||||
"TEXCOORD_0":26
|
"TEXCOORD_0":26,
|
||||||
|
"TANGENT":27
|
||||||
},
|
},
|
||||||
"indices":27,
|
"indices":28,
|
||||||
"material":4
|
"material":4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -399,11 +400,11 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":28,
|
"POSITION":29,
|
||||||
"NORMAL":29,
|
"NORMAL":30,
|
||||||
"TEXCOORD_0":30
|
"TEXCOORD_0":31
|
||||||
},
|
},
|
||||||
"indices":31,
|
"indices":32,
|
||||||
"material":4
|
"material":4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -413,29 +414,29 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":32,
|
"POSITION":33,
|
||||||
"NORMAL":33,
|
"NORMAL":34,
|
||||||
"TEXCOORD_0":34
|
"TEXCOORD_0":35
|
||||||
},
|
},
|
||||||
"indices":35,
|
"indices":36,
|
||||||
"material":5
|
"material":5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":36,
|
"POSITION":37,
|
||||||
"NORMAL":37,
|
"NORMAL":38,
|
||||||
"TEXCOORD_0":38
|
"TEXCOORD_0":39
|
||||||
},
|
},
|
||||||
"indices":39,
|
"indices":40,
|
||||||
"material":1
|
"material":1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":40,
|
"POSITION":41,
|
||||||
"NORMAL":41,
|
"NORMAL":42,
|
||||||
"TEXCOORD_0":42
|
"TEXCOORD_0":43
|
||||||
},
|
},
|
||||||
"indices":43,
|
"indices":44,
|
||||||
"material":6
|
"material":6
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -445,20 +446,22 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":44,
|
"POSITION":45,
|
||||||
"NORMAL":45,
|
"NORMAL":46,
|
||||||
"TEXCOORD_0":46
|
"TEXCOORD_0":47,
|
||||||
|
"TANGENT":48
|
||||||
},
|
},
|
||||||
"indices":47,
|
"indices":49,
|
||||||
"material":6
|
"material":6
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":48,
|
"POSITION":50,
|
||||||
"NORMAL":49,
|
"NORMAL":51,
|
||||||
"TEXCOORD_0":50
|
"TEXCOORD_0":52,
|
||||||
|
"TANGENT":53
|
||||||
},
|
},
|
||||||
"indices":51,
|
"indices":54,
|
||||||
"material":7
|
"material":7
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -468,11 +471,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":52,
|
"POSITION":55,
|
||||||
"NORMAL":53,
|
"NORMAL":56,
|
||||||
"TEXCOORD_0":54
|
"TEXCOORD_0":57,
|
||||||
|
"TANGENT":58
|
||||||
},
|
},
|
||||||
"indices":55,
|
"indices":59,
|
||||||
"material":8
|
"material":8
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -482,11 +486,11 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":56,
|
"POSITION":60,
|
||||||
"NORMAL":57,
|
"NORMAL":61,
|
||||||
"TEXCOORD_0":58
|
"TEXCOORD_0":62
|
||||||
},
|
},
|
||||||
"indices":59,
|
"indices":63,
|
||||||
"material":5
|
"material":5
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -700,7 +704,7 @@
|
|||||||
{
|
{
|
||||||
"bufferView":24,
|
"bufferView":24,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":304,
|
"count":306,
|
||||||
"max":[
|
"max":[
|
||||||
28.5,
|
28.5,
|
||||||
4,
|
4,
|
||||||
@@ -716,23 +720,29 @@
|
|||||||
{
|
{
|
||||||
"bufferView":25,
|
"bufferView":25,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":304,
|
"count":306,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":26,
|
"bufferView":26,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":304,
|
"count":306,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":27,
|
"bufferView":27,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":306,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":28,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":780,
|
"count":780,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":28,
|
"bufferView":29,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":238,
|
"count":238,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -748,25 +758,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":29,
|
"bufferView":30,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":238,
|
"count":238,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":30,
|
"bufferView":31,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":238,
|
"count":238,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":31,
|
"bufferView":32,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":657,
|
"count":657,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":32,
|
"bufferView":33,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":332,
|
"count":332,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -782,25 +792,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":33,
|
"bufferView":34,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":332,
|
"count":332,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":34,
|
"bufferView":35,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":332,
|
"count":332,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":35,
|
"bufferView":36,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":885,
|
"count":885,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":36,
|
"bufferView":37,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -816,25 +826,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":37,
|
"bufferView":38,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":38,
|
"bufferView":39,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":39,
|
"bufferView":40,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":18,
|
"count":18,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":40,
|
"bufferView":41,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -850,27 +860,27 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":41,
|
"bufferView":42,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":42,
|
"bufferView":43,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":8,
|
"count":8,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":43,
|
"bufferView":44,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":12,
|
"count":12,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":44,
|
"bufferView":45,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":19,
|
"count":25,
|
||||||
"max":[
|
"max":[
|
||||||
30.13867950439453,
|
30.13867950439453,
|
||||||
0,
|
0,
|
||||||
@@ -884,27 +894,33 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":45,
|
"bufferView":46,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":19,
|
"count":25,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":46,
|
"bufferView":47,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":19,
|
"count":25,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":47,
|
"bufferView":48,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":25,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":49,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":54,
|
"count":54,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":48,
|
"bufferView":50,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":182,
|
"count":199,
|
||||||
"max":[
|
"max":[
|
||||||
31,
|
31,
|
||||||
1,
|
1,
|
||||||
@@ -918,25 +934,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":49,
|
"bufferView":51,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":182,
|
"count":199,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":50,
|
"bufferView":52,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":182,
|
"count":199,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":51,
|
"bufferView":53,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":199,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":54,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":420,
|
"count":420,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":52,
|
"bufferView":55,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -952,25 +974,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":53,
|
"bufferView":56,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":54,
|
"bufferView":57,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":55,
|
"bufferView":58,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":40,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":59,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":60,
|
"count":60,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":56,
|
"bufferView":60,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1212,
|
"count":1212,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -986,19 +1014,19 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":57,
|
"bufferView":61,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1212,
|
"count":1212,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":58,
|
"bufferView":62,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1212,
|
"count":1212,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":59,
|
"bufferView":63,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":1956,
|
"count":1956,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -1151,224 +1179,248 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3648,
|
"byteLength":3672,
|
||||||
"byteOffset":98128,
|
"byteOffset":98128,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3648,
|
"byteLength":3672,
|
||||||
"byteOffset":101776,
|
"byteOffset":101800,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2432,
|
"byteLength":2448,
|
||||||
"byteOffset":105424,
|
"byteOffset":105472,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":4896,
|
||||||
|
"byteOffset":107920,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1560,
|
"byteLength":1560,
|
||||||
"byteOffset":107856,
|
"byteOffset":112816,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2856,
|
"byteLength":2856,
|
||||||
"byteOffset":109416,
|
"byteOffset":114376,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2856,
|
"byteLength":2856,
|
||||||
"byteOffset":112272,
|
"byteOffset":117232,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1904,
|
"byteLength":1904,
|
||||||
"byteOffset":115128,
|
"byteOffset":120088,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1314,
|
"byteLength":1314,
|
||||||
"byteOffset":117032,
|
"byteOffset":121992,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3984,
|
"byteLength":3984,
|
||||||
"byteOffset":118348,
|
"byteOffset":123308,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3984,
|
"byteLength":3984,
|
||||||
"byteOffset":122332,
|
"byteOffset":127292,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2656,
|
"byteLength":2656,
|
||||||
"byteOffset":126316,
|
"byteOffset":131276,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1770,
|
"byteLength":1770,
|
||||||
"byteOffset":128972,
|
"byteOffset":133932,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":96,
|
"byteLength":96,
|
||||||
"byteOffset":130744,
|
"byteOffset":135704,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":96,
|
"byteLength":96,
|
||||||
"byteOffset":130840,
|
"byteOffset":135800,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":64,
|
"byteLength":64,
|
||||||
"byteOffset":130936,
|
"byteOffset":135896,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":36,
|
"byteLength":36,
|
||||||
"byteOffset":131000,
|
"byteOffset":135960,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":96,
|
"byteLength":96,
|
||||||
"byteOffset":131036,
|
"byteOffset":135996,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":96,
|
"byteLength":96,
|
||||||
"byteOffset":131132,
|
"byteOffset":136092,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":64,
|
"byteLength":64,
|
||||||
"byteOffset":131228,
|
"byteOffset":136188,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":24,
|
"byteLength":24,
|
||||||
"byteOffset":131292,
|
"byteOffset":136252,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":228,
|
"byteLength":300,
|
||||||
"byteOffset":131316,
|
"byteOffset":136276,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":228,
|
"byteLength":300,
|
||||||
"byteOffset":131544,
|
"byteOffset":136576,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":152,
|
"byteLength":200,
|
||||||
"byteOffset":131772,
|
"byteOffset":136876,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":400,
|
||||||
|
"byteOffset":137076,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":108,
|
"byteLength":108,
|
||||||
"byteOffset":131924,
|
"byteOffset":137476,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2184,
|
"byteLength":2388,
|
||||||
"byteOffset":132032,
|
"byteOffset":137584,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2184,
|
"byteLength":2388,
|
||||||
"byteOffset":134216,
|
"byteOffset":139972,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1456,
|
"byteLength":1592,
|
||||||
"byteOffset":136400,
|
"byteOffset":142360,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":3184,
|
||||||
|
"byteOffset":143952,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":840,
|
"byteLength":840,
|
||||||
"byteOffset":137856,
|
"byteOffset":147136,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":480,
|
"byteLength":480,
|
||||||
"byteOffset":138696,
|
"byteOffset":147976,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":480,
|
"byteLength":480,
|
||||||
"byteOffset":139176,
|
"byteOffset":148456,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":320,
|
"byteLength":320,
|
||||||
"byteOffset":139656,
|
"byteOffset":148936,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":640,
|
||||||
|
"byteOffset":149256,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":120,
|
"byteLength":120,
|
||||||
"byteOffset":139976,
|
"byteOffset":149896,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":14544,
|
"byteLength":14544,
|
||||||
"byteOffset":140096,
|
"byteOffset":150016,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":14544,
|
"byteLength":14544,
|
||||||
"byteOffset":154640,
|
"byteOffset":164560,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":9696,
|
"byteLength":9696,
|
||||||
"byteOffset":169184,
|
"byteOffset":179104,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3912,
|
"byteLength":3912,
|
||||||
"byteOffset":178880,
|
"byteOffset":188800,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":182792,
|
"byteLength":192712,
|
||||||
"uri":"business-bar1.bin"
|
"uri":"business-bar1.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -92,9 +92,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -104,20 +105,22 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":5,
|
||||||
"NORMAL":5,
|
"NORMAL":6,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":7,
|
||||||
|
"TANGENT":8
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":0
|
"material":0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":10,
|
||||||
"NORMAL":9,
|
"NORMAL":11,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":12,
|
||||||
|
"TANGENT":13
|
||||||
},
|
},
|
||||||
"indices":11,
|
"indices":14,
|
||||||
"material":1
|
"material":1
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -133,7 +136,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_73934",
|
"name":"Atlas_73934",
|
||||||
"uri":"Atlas_73934.png"
|
"uri":"textures/Atlas_73934.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -167,14 +170,20 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":28,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":72,
|
"count":72,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":4,
|
"bufferView":5,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":694,
|
"count":746,
|
||||||
"max":[
|
"max":[
|
||||||
12,
|
12,
|
||||||
8,
|
8,
|
||||||
@@ -188,25 +197,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":5,
|
"bufferView":6,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":694,
|
"count":746,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":7,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":694,
|
"count":746,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":8,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":746,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":9,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":1938,
|
"count":1938,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":8,
|
"bufferView":10,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -222,19 +237,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":9,
|
"bufferView":11,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":10,
|
"bufferView":12,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":11,
|
"bufferView":13,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":16,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":14,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":24,
|
"count":24,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -261,56 +282,74 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":144,
|
"byteLength":448,
|
||||||
"byteOffset":896,
|
"byteOffset":896,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":144,
|
||||||
|
"byteOffset":1344,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8328,
|
"byteLength":8952,
|
||||||
"byteOffset":1040,
|
"byteOffset":1488,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8328,
|
"byteLength":8952,
|
||||||
"byteOffset":9368,
|
"byteOffset":10440,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":5552,
|
"byteLength":5968,
|
||||||
"byteOffset":17696,
|
"byteOffset":19392,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":11936,
|
||||||
|
"byteOffset":25360,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3876,
|
"byteLength":3876,
|
||||||
"byteOffset":23248,
|
"byteOffset":37296,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":192,
|
"byteLength":192,
|
||||||
"byteOffset":27124,
|
"byteOffset":41172,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":192,
|
"byteLength":192,
|
||||||
"byteOffset":27316,
|
"byteOffset":41364,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":128,
|
"byteLength":128,
|
||||||
"byteOffset":27508,
|
"byteOffset":41556,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":256,
|
||||||
|
"byteOffset":41684,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":48,
|
"byteLength":48,
|
||||||
"byteOffset":27636,
|
"byteOffset":41940,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -322,7 +361,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":27684,
|
"byteLength":41988,
|
||||||
"uri":"business-cafe1.bin"
|
"uri":"business-cafe1.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -115,9 +115,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -127,20 +128,22 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":5,
|
||||||
"NORMAL":5,
|
"NORMAL":6,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":7,
|
||||||
|
"TANGENT":8
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":1
|
"material":1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":10,
|
||||||
"NORMAL":9,
|
"NORMAL":11,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":12,
|
||||||
|
"TANGENT":13
|
||||||
},
|
},
|
||||||
"indices":11,
|
"indices":14,
|
||||||
"material":2
|
"material":2
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -160,7 +163,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_73934",
|
"name":"Atlas_73934",
|
||||||
"uri":"Atlas_73934.png"
|
"uri":"textures/Atlas_73934.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -194,14 +197,20 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":28,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":72,
|
"count":72,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":4,
|
"bufferView":5,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":686,
|
"count":749,
|
||||||
"max":[
|
"max":[
|
||||||
12,
|
12,
|
||||||
8,
|
8,
|
||||||
@@ -215,25 +224,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":5,
|
"bufferView":6,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":686,
|
"count":749,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":7,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":686,
|
"count":749,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":8,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":749,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":9,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":2130,
|
"count":2130,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":8,
|
"bufferView":10,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -249,19 +264,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":9,
|
"bufferView":11,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":10,
|
"bufferView":12,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":16,
|
"count":16,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":11,
|
"bufferView":13,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":16,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":14,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":24,
|
"count":24,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -288,56 +309,74 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":144,
|
"byteLength":448,
|
||||||
"byteOffset":896,
|
"byteOffset":896,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":144,
|
||||||
|
"byteOffset":1344,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8232,
|
"byteLength":8988,
|
||||||
"byteOffset":1040,
|
"byteOffset":1488,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8232,
|
"byteLength":8988,
|
||||||
"byteOffset":9272,
|
"byteOffset":10476,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":5488,
|
"byteLength":5992,
|
||||||
"byteOffset":17504,
|
"byteOffset":19464,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":11984,
|
||||||
|
"byteOffset":25456,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":4260,
|
"byteLength":4260,
|
||||||
"byteOffset":22992,
|
"byteOffset":37440,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":192,
|
"byteLength":192,
|
||||||
"byteOffset":27252,
|
"byteOffset":41700,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":192,
|
"byteLength":192,
|
||||||
"byteOffset":27444,
|
"byteOffset":41892,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":128,
|
"byteLength":128,
|
||||||
"byteOffset":27636,
|
"byteOffset":42084,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":256,
|
||||||
|
"byteOffset":42212,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":48,
|
"byteLength":48,
|
||||||
"byteOffset":27764,
|
"byteOffset":42468,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -349,7 +388,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":27812,
|
"byteLength":42516,
|
||||||
"uri":"business-store1.bin"
|
"uri":"business-store1.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -109,9 +109,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -121,11 +122,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":5,
|
||||||
"NORMAL":5,
|
"NORMAL":6,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":7,
|
||||||
|
"TANGENT":8
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -135,11 +137,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":10,
|
||||||
"NORMAL":9,
|
"NORMAL":11,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":12,
|
||||||
|
"TANGENT":13
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -149,11 +152,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":11,
|
"POSITION":14,
|
||||||
"NORMAL":12,
|
"NORMAL":15,
|
||||||
"TEXCOORD_0":13
|
"TEXCOORD_0":16,
|
||||||
|
"TANGENT":17
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -163,11 +167,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":14,
|
"POSITION":18,
|
||||||
"NORMAL":15,
|
"NORMAL":19,
|
||||||
"TEXCOORD_0":16
|
"TEXCOORD_0":20,
|
||||||
|
"TANGENT":21
|
||||||
},
|
},
|
||||||
"indices":17,
|
"indices":22,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -191,24 +196,24 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Image",
|
"name":"Image",
|
||||||
"uri":"Image.png"
|
"uri":"textures/Image.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_00001",
|
"name":"Atlas_00001",
|
||||||
"uri":"Atlas_00001.png"
|
"uri":"textures/Atlas_00001.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"atlas-gym-roughness",
|
"name":"atlas-gym-roughness",
|
||||||
"uri":"atlas-gym-roughness.png"
|
"uri":"textures/atlas-gym-roughness.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1624,
|
"count":1730,
|
||||||
"max":[
|
"max":[
|
||||||
50,
|
50,
|
||||||
50,
|
50,
|
||||||
@@ -224,23 +229,29 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1624,
|
"count":1730,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":1624,
|
"count":1730,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":1730,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":4032,
|
"count":4032,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":4,
|
"bufferView":5,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -255,56 +266,34 @@
|
|||||||
],
|
],
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bufferView":5,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":2196,
|
|
||||||
"type":"VEC3"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":6,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"type":"VEC2"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":7,
|
||||||
"componentType":5123,
|
"componentType":5126,
|
||||||
"count":4296,
|
"count":2196,
|
||||||
"type":"SCALAR"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":8,
|
"bufferView":8,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"max":[
|
"type":"VEC4"
|
||||||
8.504772186279297,
|
|
||||||
0.19203820824623108,
|
|
||||||
0.3241504430770874
|
|
||||||
],
|
|
||||||
"min":[
|
|
||||||
-2.7912282943725586,
|
|
||||||
-0.2079617977142334,
|
|
||||||
-1.0758496522903442
|
|
||||||
],
|
|
||||||
"type":"VEC3"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":9,
|
"bufferView":9,
|
||||||
"componentType":5126,
|
"componentType":5123,
|
||||||
"count":2196,
|
"count":4296,
|
||||||
"type":"VEC3"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":10,
|
"bufferView":10,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"type":"VEC2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":11,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":2196,
|
|
||||||
"max":[
|
"max":[
|
||||||
8.504772186279297,
|
8.504772186279297,
|
||||||
0.19203820824623108,
|
0.19203820824623108,
|
||||||
@@ -317,21 +306,61 @@
|
|||||||
],
|
],
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"bufferView":11,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":2196,
|
||||||
|
"type":"VEC3"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"bufferView":12,
|
"bufferView":12,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"type":"VEC3"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":13,
|
"bufferView":13,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":2196,
|
"count":2196,
|
||||||
"type":"VEC2"
|
"type":"VEC4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":14,
|
"bufferView":14,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
|
"count":2196,
|
||||||
|
"max":[
|
||||||
|
8.504772186279297,
|
||||||
|
0.19203820824623108,
|
||||||
|
0.3241504430770874
|
||||||
|
],
|
||||||
|
"min":[
|
||||||
|
-2.7912282943725586,
|
||||||
|
-0.2079617977142334,
|
||||||
|
-1.0758496522903442
|
||||||
|
],
|
||||||
|
"type":"VEC3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":15,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":2196,
|
||||||
|
"type":"VEC3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":16,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":2196,
|
||||||
|
"type":"VEC2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":17,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":2196,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":18,
|
||||||
|
"componentType":5126,
|
||||||
"count":164,
|
"count":164,
|
||||||
"max":[
|
"max":[
|
||||||
32,
|
32,
|
||||||
@@ -346,19 +375,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":15,
|
"bufferView":19,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":164,
|
"count":164,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":16,
|
"bufferView":20,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":164,
|
"count":164,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":17,
|
"bufferView":21,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":164,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":22,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":564,
|
"count":564,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -367,110 +402,140 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":19488,
|
"byteLength":20760,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":19488,
|
"byteLength":20760,
|
||||||
"byteOffset":19488,
|
"byteOffset":20760,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":12992,
|
"byteLength":13840,
|
||||||
"byteOffset":38976,
|
"byteOffset":41520,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":27680,
|
||||||
|
"byteOffset":55360,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8064,
|
"byteLength":8064,
|
||||||
"byteOffset":51968,
|
"byteOffset":83040,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":60032,
|
"byteOffset":91104,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":86384,
|
"byteOffset":117456,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":17568,
|
"byteLength":17568,
|
||||||
"byteOffset":112736,
|
"byteOffset":143808,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":35136,
|
||||||
|
"byteOffset":161376,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":8592,
|
"byteLength":8592,
|
||||||
"byteOffset":130304,
|
"byteOffset":196512,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":138896,
|
"byteOffset":205104,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":165248,
|
"byteOffset":231456,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":17568,
|
"byteLength":17568,
|
||||||
"byteOffset":191600,
|
"byteOffset":257808,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":35136,
|
||||||
|
"byteOffset":275376,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":209168,
|
"byteOffset":310512,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":26352,
|
"byteLength":26352,
|
||||||
"byteOffset":235520,
|
"byteOffset":336864,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":17568,
|
"byteLength":17568,
|
||||||
"byteOffset":261872,
|
"byteOffset":363216,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":35136,
|
||||||
|
"byteOffset":380784,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1968,
|
"byteLength":1968,
|
||||||
"byteOffset":279440,
|
"byteOffset":415920,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1968,
|
"byteLength":1968,
|
||||||
"byteOffset":281408,
|
"byteOffset":417888,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1312,
|
"byteLength":1312,
|
||||||
"byteOffset":283376,
|
"byteOffset":419856,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":2624,
|
||||||
|
"byteOffset":421168,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1128,
|
"byteLength":1128,
|
||||||
"byteOffset":284688,
|
"byteOffset":423792,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -482,7 +547,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":285816,
|
"byteLength":424920,
|
||||||
"uri":"gym-exterior.bin"
|
"uri":"gym-exterior.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -195,9 +195,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":12,
|
"POSITION":12,
|
||||||
"NORMAL":13,
|
"NORMAL":13,
|
||||||
"TEXCOORD_0":14
|
"TEXCOORD_0":14,
|
||||||
|
"TANGENT":15
|
||||||
},
|
},
|
||||||
"indices":15,
|
"indices":16,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -207,11 +208,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":16,
|
"POSITION":17,
|
||||||
"NORMAL":17,
|
"NORMAL":18,
|
||||||
"TEXCOORD_0":18
|
"TEXCOORD_0":19,
|
||||||
|
"TANGENT":20
|
||||||
},
|
},
|
||||||
"indices":19,
|
"indices":21,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -221,11 +223,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":20,
|
"POSITION":22,
|
||||||
"NORMAL":21,
|
"NORMAL":23,
|
||||||
"TEXCOORD_0":22
|
"TEXCOORD_0":24,
|
||||||
|
"TANGENT":25
|
||||||
},
|
},
|
||||||
"indices":23,
|
"indices":26,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -235,11 +238,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":24,
|
"POSITION":27,
|
||||||
"NORMAL":25,
|
"NORMAL":28,
|
||||||
"TEXCOORD_0":26
|
"TEXCOORD_0":29,
|
||||||
|
"TANGENT":30
|
||||||
},
|
},
|
||||||
"indices":23,
|
"indices":26,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -249,11 +253,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":27,
|
"POSITION":31,
|
||||||
"NORMAL":28,
|
"NORMAL":32,
|
||||||
"TEXCOORD_0":29
|
"TEXCOORD_0":33,
|
||||||
|
"TANGENT":34
|
||||||
},
|
},
|
||||||
"indices":30,
|
"indices":35,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -263,11 +268,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":31,
|
"POSITION":36,
|
||||||
"NORMAL":32,
|
"NORMAL":37,
|
||||||
"TEXCOORD_0":33
|
"TEXCOORD_0":38,
|
||||||
|
"TANGENT":39
|
||||||
},
|
},
|
||||||
"indices":34,
|
"indices":40,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -283,7 +289,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_52716",
|
"name":"Atlas_52716",
|
||||||
"uri":"Atlas_52716.png"
|
"uri":"textures/Atlas_52716.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -392,7 +398,7 @@
|
|||||||
{
|
{
|
||||||
"bufferView":12,
|
"bufferView":12,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":214,
|
"count":217,
|
||||||
"max":[
|
"max":[
|
||||||
15.431995391845703,
|
15.431995391845703,
|
||||||
20.69999885559082,
|
20.69999885559082,
|
||||||
@@ -408,25 +414,31 @@
|
|||||||
{
|
{
|
||||||
"bufferView":13,
|
"bufferView":13,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":214,
|
"count":217,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":14,
|
"bufferView":14,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":214,
|
"count":217,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":15,
|
"bufferView":15,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":217,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":16,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":864,
|
"count":864,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":16,
|
"bufferView":17,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":276,
|
"count":330,
|
||||||
"max":[
|
"max":[
|
||||||
3,
|
3,
|
||||||
3,
|
3,
|
||||||
@@ -440,25 +452,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":17,
|
"bufferView":18,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":276,
|
"count":330,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":18,
|
"bufferView":19,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":276,
|
"count":330,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":19,
|
"bufferView":20,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":330,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":21,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":858,
|
"count":858,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":20,
|
"bufferView":22,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":27,
|
"count":27,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -474,27 +492,33 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":21,
|
"bufferView":23,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":27,
|
"count":27,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bufferView":22,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":27,
|
|
||||||
"type":"VEC2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":23,
|
|
||||||
"componentType":5123,
|
|
||||||
"count":96,
|
|
||||||
"type":"SCALAR"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"bufferView":24,
|
"bufferView":24,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":27,
|
"count":27,
|
||||||
|
"type":"VEC2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":25,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":27,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":26,
|
||||||
|
"componentType":5123,
|
||||||
|
"count":96,
|
||||||
|
"type":"SCALAR"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":27,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":27,
|
||||||
"max":[
|
"max":[
|
||||||
0.16909240186214447,
|
0.16909240186214447,
|
||||||
7,
|
7,
|
||||||
@@ -508,21 +532,27 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":25,
|
"bufferView":28,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":27,
|
"count":27,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":26,
|
"bufferView":29,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":27,
|
"count":27,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":27,
|
"bufferView":30,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":122,
|
"count":27,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":31,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":128,
|
||||||
"max":[
|
"max":[
|
||||||
3.1788997650146484,
|
3.1788997650146484,
|
||||||
1.1500000953674316,
|
1.1500000953674316,
|
||||||
@@ -536,27 +566,33 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":28,
|
"bufferView":32,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":122,
|
"count":128,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":29,
|
"bufferView":33,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":122,
|
"count":128,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":30,
|
"bufferView":34,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":128,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":35,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":228,
|
"count":228,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":31,
|
"bufferView":36,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":293,
|
"count":359,
|
||||||
"max":[
|
"max":[
|
||||||
38,
|
38,
|
||||||
0,
|
0,
|
||||||
@@ -570,19 +606,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":32,
|
"bufferView":37,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":293,
|
"count":359,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":33,
|
"bufferView":38,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":293,
|
"count":359,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":34,
|
"bufferView":39,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":359,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":40,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":1182,
|
"count":1182,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -663,140 +705,176 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2568,
|
"byteLength":2604,
|
||||||
"byteOffset":92328,
|
"byteOffset":92328,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2568,
|
"byteLength":2604,
|
||||||
"byteOffset":94896,
|
"byteOffset":94932,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1712,
|
"byteLength":1736,
|
||||||
"byteOffset":97464,
|
"byteOffset":97536,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":3472,
|
||||||
|
"byteOffset":99272,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1728,
|
"byteLength":1728,
|
||||||
"byteOffset":99176,
|
"byteOffset":102744,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3312,
|
"byteLength":3960,
|
||||||
"byteOffset":100904,
|
"byteOffset":104472,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3312,
|
"byteLength":3960,
|
||||||
"byteOffset":104216,
|
"byteOffset":108432,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2208,
|
"byteLength":2640,
|
||||||
"byteOffset":107528,
|
"byteOffset":112392,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":5280,
|
||||||
|
"byteOffset":115032,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1716,
|
"byteLength":1716,
|
||||||
"byteOffset":109736,
|
"byteOffset":120312,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":324,
|
"byteLength":324,
|
||||||
"byteOffset":111452,
|
"byteOffset":122028,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":324,
|
"byteLength":324,
|
||||||
"byteOffset":111776,
|
"byteOffset":122352,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":216,
|
"byteLength":216,
|
||||||
"byteOffset":112100,
|
"byteOffset":122676,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":432,
|
||||||
|
"byteOffset":122892,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":192,
|
"byteLength":192,
|
||||||
"byteOffset":112316,
|
"byteOffset":123324,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":324,
|
"byteLength":324,
|
||||||
"byteOffset":112508,
|
"byteOffset":123516,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":324,
|
"byteLength":324,
|
||||||
"byteOffset":112832,
|
"byteOffset":123840,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":216,
|
"byteLength":216,
|
||||||
"byteOffset":113156,
|
"byteOffset":124164,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1464,
|
"byteLength":432,
|
||||||
"byteOffset":113372,
|
"byteOffset":124380,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1464,
|
"byteLength":1536,
|
||||||
"byteOffset":114836,
|
"byteOffset":124812,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":976,
|
"byteLength":1536,
|
||||||
"byteOffset":116300,
|
"byteOffset":126348,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":1024,
|
||||||
|
"byteOffset":127884,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":2048,
|
||||||
|
"byteOffset":128908,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":456,
|
"byteLength":456,
|
||||||
"byteOffset":117276,
|
"byteOffset":130956,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3516,
|
"byteLength":4308,
|
||||||
"byteOffset":117732,
|
"byteOffset":131412,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3516,
|
"byteLength":4308,
|
||||||
"byteOffset":121248,
|
"byteOffset":135720,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2344,
|
"byteLength":2872,
|
||||||
"byteOffset":124764,
|
"byteOffset":140028,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":5744,
|
||||||
|
"byteOffset":142900,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2364,
|
"byteLength":2364,
|
||||||
"byteOffset":127108,
|
"byteOffset":148644,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -808,7 +886,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":129472,
|
"byteLength":151008,
|
||||||
"uri":"home-exterior.bin"
|
"uri":"home-exterior.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -60,9 +60,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -72,11 +73,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":5,
|
||||||
"NORMAL":5,
|
"NORMAL":6,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":7,
|
||||||
|
"TANGENT":8
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -92,14 +94,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_00006",
|
"name":"Atlas_00006",
|
||||||
"uri":"Atlas_00006.png"
|
"uri":"textures/Atlas_00006.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":308,
|
"count":320,
|
||||||
"max":[
|
"max":[
|
||||||
50,
|
50,
|
||||||
20,
|
20,
|
||||||
@@ -115,25 +117,31 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":308,
|
"count":320,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":308,
|
"count":320,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":320,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":780,
|
"count":780,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":4,
|
"bufferView":5,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":173,
|
"count":204,
|
||||||
"max":[
|
"max":[
|
||||||
53,
|
53,
|
||||||
0,
|
0,
|
||||||
@@ -147,19 +155,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":5,
|
"bufferView":6,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":173,
|
"count":204,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":7,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":173,
|
"count":204,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":8,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":204,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":9,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":900,
|
"count":900,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -168,50 +182,62 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3696,
|
"byteLength":3840,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3696,
|
"byteLength":3840,
|
||||||
"byteOffset":3696,
|
"byteOffset":3840,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2464,
|
"byteLength":2560,
|
||||||
"byteOffset":7392,
|
"byteOffset":7680,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":5120,
|
||||||
|
"byteOffset":10240,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1560,
|
"byteLength":1560,
|
||||||
"byteOffset":9856,
|
"byteOffset":15360,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2076,
|
"byteLength":2448,
|
||||||
"byteOffset":11416,
|
"byteOffset":16920,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2076,
|
"byteLength":2448,
|
||||||
"byteOffset":13492,
|
"byteOffset":19368,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1384,
|
"byteLength":1632,
|
||||||
"byteOffset":15568,
|
"byteOffset":21816,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":3264,
|
||||||
|
"byteOffset":23448,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1800,
|
"byteLength":1800,
|
||||||
"byteOffset":16952,
|
"byteOffset":26712,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -223,7 +249,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":18752,
|
"byteLength":28512,
|
||||||
"uri":"logistics-center-exterior.bin"
|
"uri":"logistics-center-exterior.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"asset":{
|
"asset":{
|
||||||
"generator":"Khronos glTF Blender I/O v3.6.27",
|
"generator":"Khronos glTF Blender I/O v3.6.28",
|
||||||
"version":"2.0"
|
"version":"2.0"
|
||||||
},
|
},
|
||||||
"extensionsUsed":[
|
"extensionsUsed":[
|
||||||
@@ -104,9 +104,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":8,
|
||||||
"NORMAL":9,
|
"NORMAL":9,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":10,
|
||||||
|
"TANGENT":11
|
||||||
},
|
},
|
||||||
"indices":11,
|
"indices":12,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -116,11 +117,11 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":12,
|
"POSITION":13,
|
||||||
"NORMAL":13,
|
"NORMAL":14,
|
||||||
"TEXCOORD_0":14
|
"TEXCOORD_0":15
|
||||||
},
|
},
|
||||||
"indices":15,
|
"indices":16,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -130,11 +131,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":16,
|
"POSITION":17,
|
||||||
"NORMAL":17,
|
"NORMAL":18,
|
||||||
"TEXCOORD_0":18
|
"TEXCOORD_0":19,
|
||||||
|
"TANGENT":20
|
||||||
},
|
},
|
||||||
"indices":19,
|
"indices":21,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -150,7 +152,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_00005",
|
"name":"Atlas_00005",
|
||||||
"uri":"Atlas_00005.png"
|
"uri":"textures/Atlas_00005.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -225,7 +227,7 @@
|
|||||||
{
|
{
|
||||||
"bufferView":8,
|
"bufferView":8,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":116,
|
"count":120,
|
||||||
"max":[
|
"max":[
|
||||||
50,
|
50,
|
||||||
0.21000000834465027,
|
0.21000000834465027,
|
||||||
@@ -241,23 +243,29 @@
|
|||||||
{
|
{
|
||||||
"bufferView":9,
|
"bufferView":9,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":116,
|
"count":120,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":10,
|
"bufferView":10,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":116,
|
"count":120,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":11,
|
"bufferView":11,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":120,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":12,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":522,
|
"count":522,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":12,
|
"bufferView":13,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":130,
|
"count":130,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -273,27 +281,27 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":13,
|
"bufferView":14,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":130,
|
"count":130,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":14,
|
"bufferView":15,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":130,
|
"count":130,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":15,
|
"bufferView":16,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":210,
|
"count":210,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":16,
|
"bufferView":17,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":376,
|
"count":384,
|
||||||
"max":[
|
"max":[
|
||||||
31,
|
31,
|
||||||
3.3999998569488525,
|
3.3999998569488525,
|
||||||
@@ -307,19 +315,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":17,
|
"bufferView":18,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":376,
|
"count":384,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":18,
|
"bufferView":19,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":376,
|
"count":384,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":19,
|
"bufferView":20,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":384,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":21,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":576,
|
"count":576,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -376,74 +390,86 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1392,
|
"byteLength":1440,
|
||||||
"byteOffset":43696,
|
"byteOffset":43696,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1392,
|
"byteLength":1440,
|
||||||
"byteOffset":45088,
|
"byteOffset":45136,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":928,
|
"byteLength":960,
|
||||||
"byteOffset":46480,
|
"byteOffset":46576,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":1920,
|
||||||
|
"byteOffset":47536,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1044,
|
"byteLength":1044,
|
||||||
"byteOffset":47408,
|
"byteOffset":49456,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1560,
|
"byteLength":1560,
|
||||||
"byteOffset":48452,
|
"byteOffset":50500,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1560,
|
"byteLength":1560,
|
||||||
"byteOffset":50012,
|
"byteOffset":52060,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1040,
|
"byteLength":1040,
|
||||||
"byteOffset":51572,
|
"byteOffset":53620,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":420,
|
"byteLength":420,
|
||||||
"byteOffset":52612,
|
"byteOffset":54660,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":4512,
|
"byteLength":4608,
|
||||||
"byteOffset":53032,
|
"byteOffset":55080,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":4512,
|
"byteLength":4608,
|
||||||
"byteOffset":57544,
|
"byteOffset":59688,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3008,
|
"byteLength":3072,
|
||||||
"byteOffset":62056,
|
"byteOffset":64296,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":6144,
|
||||||
|
"byteOffset":67368,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1152,
|
"byteLength":1152,
|
||||||
"byteOffset":65064,
|
"byteOffset":73512,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -455,7 +481,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":66216,
|
"byteLength":74664,
|
||||||
"uri":"office-exterior.bin"
|
"uri":"office-exterior.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -35,9 +35,9 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -19.48 )
|
|||||||
shape = SubResource( 2 )
|
shape = SubResource( 2 )
|
||||||
|
|
||||||
[node name="Occluder3" type="Occluder" parent="."]
|
[node name="Occluder3" type="Occluder" parent="."]
|
||||||
transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -40, 0, 0.157095 )
|
transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -39.7128, 0, 0.157095 )
|
||||||
shape = SubResource( 3 )
|
shape = SubResource( 3 )
|
||||||
|
|
||||||
[node name="Occluder4" type="Occluder" parent="."]
|
[node name="Occluder4" type="Occluder" parent="."]
|
||||||
transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 40, 0, 0.157095 )
|
transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 39.7202, 0, 0.157095 )
|
||||||
shape = SubResource( 3 )
|
shape = SubResource( 3 )
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
"name":"garage-door",
|
"name":"garage-door",
|
||||||
"translation":[
|
"translation":[
|
||||||
0,
|
0,
|
||||||
4,
|
5,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -60,9 +60,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -78,14 +79,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":985,
|
"count":1182,
|
||||||
"max":[
|
"max":[
|
||||||
2.4556546211242676,
|
2.4556546211242676,
|
||||||
0.05903172492980957,
|
0.05903172492980957,
|
||||||
@@ -93,7 +94,7 @@
|
|||||||
],
|
],
|
||||||
"min":[
|
"min":[
|
||||||
-2.4556546211242676,
|
-2.4556546211242676,
|
||||||
-3.980344295501709,
|
-4.980344295501709,
|
||||||
-0.27000004053115845
|
-0.27000004053115845
|
||||||
],
|
],
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
@@ -101,17 +102,23 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":985,
|
"count":1182,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":985,
|
"count":1182,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":1182,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":2172,
|
"count":2172,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -120,26 +127,32 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":11820,
|
"byteLength":14184,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":11820,
|
"byteLength":14184,
|
||||||
"byteOffset":11820,
|
"byteOffset":14184,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":7880,
|
"byteLength":9456,
|
||||||
"byteOffset":23640,
|
"byteOffset":28368,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":18912,
|
||||||
|
"byteOffset":37824,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":4344,
|
"byteLength":4344,
|
||||||
"byteOffset":31520,
|
"byteOffset":56736,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -151,7 +164,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":35864,
|
"byteLength":61080,
|
||||||
"uri":"residental-garage-door.bin"
|
"uri":"residental-garage-door.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -55,9 +55,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -73,14 +74,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":44,
|
"count":46,
|
||||||
"max":[
|
"max":[
|
||||||
3,
|
3,
|
||||||
5,
|
5,
|
||||||
@@ -96,17 +97,23 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":44,
|
"count":46,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":44,
|
"count":46,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":46,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":72,
|
"count":72,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -115,26 +122,32 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":528,
|
"byteLength":552,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":528,
|
"byteLength":552,
|
||||||
"byteOffset":528,
|
"byteOffset":552,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":352,
|
"byteLength":368,
|
||||||
"byteOffset":1056,
|
"byteOffset":1104,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":736,
|
||||||
|
"byteOffset":1472,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":144,
|
"byteLength":144,
|
||||||
"byteOffset":1408,
|
"byteOffset":2208,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -146,7 +159,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":1552,
|
"byteLength":2352,
|
||||||
"uri":"residental-garage-enterance.bin"
|
"uri":"residental-garage-enterance.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -55,9 +55,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -73,14 +74,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":160,
|
"count":226,
|
||||||
"max":[
|
"max":[
|
||||||
3,
|
3,
|
||||||
0.09999999403953552,
|
0.09999999403953552,
|
||||||
@@ -96,17 +97,23 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":160,
|
"count":226,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":160,
|
"count":226,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":226,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":372,
|
"count":372,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -115,26 +122,32 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1920,
|
"byteLength":2712,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1920,
|
"byteLength":2712,
|
||||||
"byteOffset":1920,
|
"byteOffset":2712,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1280,
|
"byteLength":1808,
|
||||||
"byteOffset":3840,
|
"byteOffset":5424,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":3616,
|
||||||
|
"byteOffset":7232,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":744,
|
"byteLength":744,
|
||||||
"byteOffset":5120,
|
"byteOffset":10848,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -146,7 +159,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":5864,
|
"byteLength":11592,
|
||||||
"uri":"residental-garage.bin"
|
"uri":"residental-garage.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -12,25 +12,13 @@
|
|||||||
{
|
{
|
||||||
"name":"Scene",
|
"name":"Scene",
|
||||||
"nodes":[
|
"nodes":[
|
||||||
1
|
0
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"nodes":[
|
"nodes":[
|
||||||
{
|
{
|
||||||
"mesh":0,
|
"mesh":0,
|
||||||
"name":"flat3-1-noimp",
|
|
||||||
"translation":[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"children":[
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"mesh":1,
|
|
||||||
"name":"house3-col"
|
"name":"house3-col"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -61,29 +49,16 @@
|
|||||||
],
|
],
|
||||||
"meshes":[
|
"meshes":[
|
||||||
{
|
{
|
||||||
"name":"Plane.003",
|
"name":"Cube.003",
|
||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name":"Cube.003",
|
|
||||||
"primitives":[
|
|
||||||
{
|
|
||||||
"attributes":{
|
|
||||||
"POSITION":4,
|
|
||||||
"NORMAL":5,
|
|
||||||
"TEXCOORD_0":6
|
|
||||||
},
|
|
||||||
"indices":7,
|
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -99,48 +74,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_73934",
|
"name":"Atlas_73934",
|
||||||
"uri":"Atlas_73934.png"
|
"uri":"textures/Atlas_73934.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":28,
|
"count":380,
|
||||||
"max":[
|
|
||||||
11,
|
|
||||||
4,
|
|
||||||
11
|
|
||||||
],
|
|
||||||
"min":[
|
|
||||||
-11,
|
|
||||||
0,
|
|
||||||
-8
|
|
||||||
],
|
|
||||||
"type":"VEC3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":1,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":28,
|
|
||||||
"type":"VEC3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":2,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":28,
|
|
||||||
"type":"VEC2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":3,
|
|
||||||
"componentType":5123,
|
|
||||||
"count":72,
|
|
||||||
"type":"SCALAR"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView":4,
|
|
||||||
"componentType":5126,
|
|
||||||
"count":368,
|
|
||||||
"max":[
|
"max":[
|
||||||
12,
|
12,
|
||||||
13,
|
13,
|
||||||
@@ -154,19 +95,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":5,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":368,
|
"count":380,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":368,
|
"count":380,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":380,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":1002,
|
"count":1002,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -175,50 +122,32 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":336,
|
"byteLength":4560,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":336,
|
"byteLength":4560,
|
||||||
"byteOffset":336,
|
"byteOffset":4560,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":224,
|
"byteLength":3040,
|
||||||
"byteOffset":672,
|
"byteOffset":9120,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":144,
|
"byteLength":6080,
|
||||||
"byteOffset":896,
|
"byteOffset":12160,
|
||||||
"target":34963
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer":0,
|
|
||||||
"byteLength":4416,
|
|
||||||
"byteOffset":1040,
|
|
||||||
"target":34962
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer":0,
|
|
||||||
"byteLength":4416,
|
|
||||||
"byteOffset":5456,
|
|
||||||
"target":34962
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer":0,
|
|
||||||
"byteLength":2944,
|
|
||||||
"byteOffset":9872,
|
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":2004,
|
"byteLength":2004,
|
||||||
"byteOffset":12816,
|
"byteOffset":18240,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -230,7 +159,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":14820,
|
"byteLength":20244,
|
||||||
"uri":"residental-house1.bin"
|
"uri":"residental-house1.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -99,9 +99,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":4,
|
||||||
"NORMAL":5,
|
"NORMAL":5,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":6,
|
||||||
|
"TANGENT":7
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":8,
|
||||||
"material":1
|
"material":1
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -117,7 +118,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -185,6 +186,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":7,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":8,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":8,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":12,
|
"count":12,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -235,8 +242,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":24,
|
"byteLength":128,
|
||||||
"byteOffset":24764,
|
"byteOffset":24764,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":24,
|
||||||
|
"byteOffset":24892,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -248,7 +261,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":24788,
|
"byteLength":24916,
|
||||||
"uri":"residental-house10.bin"
|
"uri":"residental-house10.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -108,9 +108,10 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":8,
|
||||||
"NORMAL":9,
|
"NORMAL":9,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":10,
|
||||||
|
"TANGENT":11
|
||||||
},
|
},
|
||||||
"indices":11,
|
"indices":12,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -126,7 +127,7 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
@@ -228,6 +229,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":11,
|
"bufferView":11,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":142,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":12,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":378,
|
"count":378,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -302,8 +309,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":756,
|
"byteLength":2272,
|
||||||
"byteOffset":38028,
|
"byteOffset":38028,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":756,
|
||||||
|
"byteOffset":40300,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -315,7 +328,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":38784,
|
"byteLength":41056,
|
||||||
"uri":"residental-house11.bin"
|
"uri":"residental-house11.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -136,18 +136,20 @@
|
|||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":0,
|
"POSITION":0,
|
||||||
"NORMAL":1,
|
"NORMAL":1,
|
||||||
"TEXCOORD_0":2
|
"TEXCOORD_0":2,
|
||||||
|
"TANGENT":3
|
||||||
},
|
},
|
||||||
"indices":3,
|
"indices":4,
|
||||||
"material":0
|
"material":0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":4,
|
"POSITION":5,
|
||||||
"NORMAL":5,
|
"NORMAL":6,
|
||||||
"TEXCOORD_0":6
|
"TEXCOORD_0":7,
|
||||||
|
"TANGENT":8
|
||||||
},
|
},
|
||||||
"indices":7,
|
"indices":9,
|
||||||
"material":1
|
"material":1
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -157,11 +159,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":8,
|
"POSITION":10,
|
||||||
"NORMAL":9,
|
"NORMAL":11,
|
||||||
"TEXCOORD_0":10
|
"TEXCOORD_0":12,
|
||||||
|
"TANGENT":13
|
||||||
},
|
},
|
||||||
"indices":11,
|
"indices":14,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -171,11 +174,11 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":12,
|
"POSITION":15,
|
||||||
"NORMAL":13,
|
"NORMAL":16,
|
||||||
"TEXCOORD_0":14
|
"TEXCOORD_0":17
|
||||||
},
|
},
|
||||||
"indices":15,
|
"indices":18,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -185,11 +188,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":16,
|
"POSITION":19,
|
||||||
"NORMAL":17,
|
"NORMAL":20,
|
||||||
"TEXCOORD_0":18
|
"TEXCOORD_0":21,
|
||||||
|
"TANGENT":22
|
||||||
},
|
},
|
||||||
"indices":19,
|
"indices":23,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -199,11 +203,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":20,
|
"POSITION":24,
|
||||||
"NORMAL":21,
|
"NORMAL":25,
|
||||||
"TEXCOORD_0":22
|
"TEXCOORD_0":26,
|
||||||
|
"TANGENT":27
|
||||||
},
|
},
|
||||||
"indices":23,
|
"indices":28,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -213,11 +218,12 @@
|
|||||||
"primitives":[
|
"primitives":[
|
||||||
{
|
{
|
||||||
"attributes":{
|
"attributes":{
|
||||||
"POSITION":24,
|
"POSITION":29,
|
||||||
"NORMAL":25,
|
"NORMAL":30,
|
||||||
"TEXCOORD_0":26
|
"TEXCOORD_0":31,
|
||||||
|
"TANGENT":32
|
||||||
},
|
},
|
||||||
"indices":27,
|
"indices":33,
|
||||||
"material":0
|
"material":0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -233,14 +239,14 @@
|
|||||||
{
|
{
|
||||||
"mimeType":"image/png",
|
"mimeType":"image/png",
|
||||||
"name":"Atlas_36953",
|
"name":"Atlas_36953",
|
||||||
"uri":"Atlas_36953.png"
|
"uri":"textures/Atlas_36953.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"accessors":[
|
"accessors":[
|
||||||
{
|
{
|
||||||
"bufferView":0,
|
"bufferView":0,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":648,
|
"count":737,
|
||||||
"max":[
|
"max":[
|
||||||
6,
|
6,
|
||||||
18,
|
18,
|
||||||
@@ -256,23 +262,29 @@
|
|||||||
{
|
{
|
||||||
"bufferView":1,
|
"bufferView":1,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":648,
|
"count":737,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":2,
|
"bufferView":2,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":648,
|
"count":737,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":3,
|
"bufferView":3,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":737,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":4,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":1512,
|
"count":1512,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":4,
|
"bufferView":5,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":68,
|
"count":68,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -288,27 +300,33 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":5,
|
"bufferView":6,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":68,
|
"count":68,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":6,
|
"bufferView":7,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":68,
|
"count":68,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":7,
|
"bufferView":8,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":68,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":9,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":102,
|
"count":102,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":8,
|
"bufferView":10,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":138,
|
"count":146,
|
||||||
"max":[
|
"max":[
|
||||||
6.099999904632568,
|
6.099999904632568,
|
||||||
22.230213165283203,
|
22.230213165283203,
|
||||||
@@ -322,25 +340,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":9,
|
"bufferView":11,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":138,
|
"count":146,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":10,
|
"bufferView":12,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":138,
|
"count":146,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":11,
|
"bufferView":13,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":146,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":14,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":258,
|
"count":258,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":12,
|
"bufferView":15,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":72,
|
"count":72,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -356,25 +380,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":13,
|
"bufferView":16,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":72,
|
"count":72,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":14,
|
"bufferView":17,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":72,
|
"count":72,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":15,
|
"bufferView":18,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":132,
|
"count":132,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":16,
|
"bufferView":19,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":118,
|
"count":118,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -390,25 +414,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":17,
|
"bufferView":20,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":118,
|
"count":118,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":18,
|
"bufferView":21,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":118,
|
"count":118,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":19,
|
"bufferView":22,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":118,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":23,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":210,
|
"count":210,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":20,
|
"bufferView":24,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":56,
|
"count":56,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -424,25 +454,31 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":21,
|
"bufferView":25,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":56,
|
"count":56,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":22,
|
"bufferView":26,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":56,
|
"count":56,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":23,
|
"bufferView":27,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":56,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":28,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":102,
|
"count":102,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":24,
|
"bufferView":29,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"max":[
|
"max":[
|
||||||
@@ -458,19 +494,25 @@
|
|||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":25,
|
"bufferView":30,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"type":"VEC3"
|
"type":"VEC3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":26,
|
"bufferView":31,
|
||||||
"componentType":5126,
|
"componentType":5126,
|
||||||
"count":40,
|
"count":40,
|
||||||
"type":"VEC2"
|
"type":"VEC2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bufferView":27,
|
"bufferView":32,
|
||||||
|
"componentType":5126,
|
||||||
|
"count":40,
|
||||||
|
"type":"VEC4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bufferView":33,
|
||||||
"componentType":5123,
|
"componentType":5123,
|
||||||
"count":60,
|
"count":60,
|
||||||
"type":"SCALAR"
|
"type":"SCALAR"
|
||||||
@@ -479,170 +521,206 @@
|
|||||||
"bufferViews":[
|
"bufferViews":[
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":7776,
|
"byteLength":8844,
|
||||||
"byteOffset":0,
|
"byteOffset":0,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":7776,
|
"byteLength":8844,
|
||||||
"byteOffset":7776,
|
"byteOffset":8844,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":5184,
|
"byteLength":5896,
|
||||||
"byteOffset":15552,
|
"byteOffset":17688,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":11792,
|
||||||
|
"byteOffset":23584,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":3024,
|
"byteLength":3024,
|
||||||
"byteOffset":20736,
|
"byteOffset":35376,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":816,
|
"byteLength":816,
|
||||||
"byteOffset":23760,
|
"byteOffset":38400,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":816,
|
"byteLength":816,
|
||||||
"byteOffset":24576,
|
"byteOffset":39216,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":544,
|
"byteLength":544,
|
||||||
"byteOffset":25392,
|
"byteOffset":40032,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":1088,
|
||||||
|
"byteOffset":40576,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":204,
|
"byteLength":204,
|
||||||
"byteOffset":25936,
|
"byteOffset":41664,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1656,
|
"byteLength":1752,
|
||||||
"byteOffset":26140,
|
"byteOffset":41868,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1656,
|
"byteLength":1752,
|
||||||
"byteOffset":27796,
|
"byteOffset":43620,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1104,
|
"byteLength":1168,
|
||||||
"byteOffset":29452,
|
"byteOffset":45372,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":2336,
|
||||||
|
"byteOffset":46540,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":516,
|
"byteLength":516,
|
||||||
"byteOffset":30556,
|
"byteOffset":48876,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":864,
|
"byteLength":864,
|
||||||
"byteOffset":31072,
|
"byteOffset":49392,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":864,
|
"byteLength":864,
|
||||||
"byteOffset":31936,
|
"byteOffset":50256,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":576,
|
"byteLength":576,
|
||||||
"byteOffset":32800,
|
"byteOffset":51120,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":264,
|
"byteLength":264,
|
||||||
"byteOffset":33376,
|
"byteOffset":51696,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1416,
|
"byteLength":1416,
|
||||||
"byteOffset":33640,
|
"byteOffset":51960,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":1416,
|
"byteLength":1416,
|
||||||
"byteOffset":35056,
|
"byteOffset":53376,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":944,
|
"byteLength":944,
|
||||||
"byteOffset":36472,
|
"byteOffset":54792,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":1888,
|
||||||
|
"byteOffset":55736,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":420,
|
"byteLength":420,
|
||||||
"byteOffset":37416,
|
"byteOffset":57624,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":672,
|
"byteLength":672,
|
||||||
"byteOffset":37836,
|
"byteOffset":58044,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":672,
|
"byteLength":672,
|
||||||
"byteOffset":38508,
|
"byteOffset":58716,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":448,
|
"byteLength":448,
|
||||||
"byteOffset":39180,
|
"byteOffset":59388,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":896,
|
||||||
|
"byteOffset":59836,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":204,
|
"byteLength":204,
|
||||||
"byteOffset":39628,
|
"byteOffset":60732,
|
||||||
"target":34963
|
"target":34963
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":480,
|
"byteLength":480,
|
||||||
"byteOffset":39832,
|
"byteOffset":60936,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":480,
|
"byteLength":480,
|
||||||
"byteOffset":40312,
|
"byteOffset":61416,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":320,
|
"byteLength":320,
|
||||||
"byteOffset":40792,
|
"byteOffset":61896,
|
||||||
|
"target":34962
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"buffer":0,
|
||||||
|
"byteLength":640,
|
||||||
|
"byteOffset":62216,
|
||||||
"target":34962
|
"target":34962
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"buffer":0,
|
"buffer":0,
|
||||||
"byteLength":120,
|
"byteLength":120,
|
||||||
"byteOffset":41112,
|
"byteOffset":62856,
|
||||||
"target":34963
|
"target":34963
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -654,7 +732,7 @@
|
|||||||
],
|
],
|
||||||
"buffers":[
|
"buffers":[
|
||||||
{
|
{
|
||||||
"byteLength":41232,
|
"byteLength":62976,
|
||||||
"uri":"residental-house13.bin"
|
"uri":"residental-house13.bin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||