@ -0,0 +1 @@ |
|||||||
|
<p>edit-push-item works!</p> |
@ -0,0 +1,25 @@ |
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||||
|
|
||||||
|
import { EditPushItemComponent } from './edit-push-item.component'; |
||||||
|
|
||||||
|
describe('EditPushItemComponent', () => { |
||||||
|
let component: EditPushItemComponent; |
||||||
|
let fixture: ComponentFixture<EditPushItemComponent>; |
||||||
|
|
||||||
|
beforeEach(async(() => { |
||||||
|
TestBed.configureTestingModule({ |
||||||
|
declarations: [ EditPushItemComponent ] |
||||||
|
}) |
||||||
|
.compileComponents(); |
||||||
|
})); |
||||||
|
|
||||||
|
beforeEach(() => { |
||||||
|
fixture = TestBed.createComponent(EditPushItemComponent); |
||||||
|
component = fixture.componentInstance; |
||||||
|
fixture.detectChanges(); |
||||||
|
}); |
||||||
|
|
||||||
|
it('should create', () => { |
||||||
|
expect(component).toBeTruthy(); |
||||||
|
}); |
||||||
|
}); |
@ -0,0 +1,15 @@ |
|||||||
|
import { Component, OnInit } from '@angular/core'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-edit-push-item', |
||||||
|
templateUrl: './edit-push-item.component.html', |
||||||
|
styleUrls: ['./edit-push-item.component.scss'] |
||||||
|
}) |
||||||
|
export class EditPushItemComponent implements OnInit { |
||||||
|
|
||||||
|
constructor() { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,46 @@ |
|||||||
|
<div class="pushbox" id="pushbox"> |
||||||
|
<div class="topbox"> |
||||||
|
<div class="lefttop"> |
||||||
|
<span>通知推送权限配置</span> |
||||||
|
</div> |
||||||
|
<div class="righttop"> |
||||||
|
<form nz-form [formGroup]="validateForm" (ngSubmit)="submitForm()"> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-input-group nzPrefixIcon="search"> |
||||||
|
<input type="text" nz-input placeholder="请输入预案类别" formControlName="search" /> |
||||||
|
</nz-input-group> |
||||||
|
</nz-form-control> |
||||||
|
<button style="display: none;" type="submit"></button> |
||||||
|
</nz-form-item> |
||||||
|
</form> |
||||||
|
<!-- <button nz-button nzType="primary"><i nz-icon nzType="plus-circle" nzTheme="outline"></i>新增</button> --> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="tablebox"> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<th style="width: 20%;">预警类别</th> |
||||||
|
<th style="width: 20%;">预警/分析事件</th> |
||||||
|
<th style="width: 25%;">预警推送范围</th> |
||||||
|
<th style="width: 25%;">预警处置范围</th> |
||||||
|
<th style="width: 10%;">操作</th> |
||||||
|
</tr> |
||||||
|
<tr *ngFor="let item of list"> |
||||||
|
<td>{{item.violationType}}</td> |
||||||
|
<td>{{item.violationName}}</td> |
||||||
|
<td>3</td> |
||||||
|
<td>4</td> |
||||||
|
<td> |
||||||
|
<span style="color: #2399FF;cursor: pointer;" (click)="edititem(item)">编辑</span> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</div> |
||||||
|
<!-- <div class="pagination"> |
||||||
|
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="usersNum" [nzPageSize]="16" |
||||||
|
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)"> |
||||||
|
</nz-pagination> |
||||||
|
<ng-template #totalTemplate let-total> 16条/页,共{{usersNum}}条 </ng-template> |
||||||
|
</div> --> |
||||||
|
</div> |
@ -0,0 +1,81 @@ |
|||||||
|
.pushbox { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
background: #FFFFFF; |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 20px; |
||||||
|
overflow: hidden; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
.topbox { |
||||||
|
width: 100%; |
||||||
|
height: 36px; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
margin-bottom: 12px; |
||||||
|
|
||||||
|
.lefttop { |
||||||
|
span:nth-child(1) { |
||||||
|
color: #000D21; |
||||||
|
margin-right: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
span:nth-child(2) { |
||||||
|
color: rgba(36, 36, 36, 0.24); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.righttop { |
||||||
|
display: flex; |
||||||
|
|
||||||
|
button { |
||||||
|
margin-left: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
nz-input-group { |
||||||
|
height: 32px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.tablebox { |
||||||
|
flex: 1; |
||||||
|
overflow-y: auto; |
||||||
|
|
||||||
|
//滚动条样式 |
||||||
|
::-webkit-scrollbar { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
table{ |
||||||
|
width: 100%; |
||||||
|
tr{ |
||||||
|
height: 40px; |
||||||
|
line-height: 40px; |
||||||
|
font-size: 14px; |
||||||
|
} |
||||||
|
tr:nth-child(1) th{ |
||||||
|
font-weight: 600; |
||||||
|
font-size: 15px; |
||||||
|
} |
||||||
|
tr,tr th,td{ |
||||||
|
border: 0px; |
||||||
|
color: #000D21; |
||||||
|
font-family: synormal; |
||||||
|
font-weight: 400; |
||||||
|
} |
||||||
|
tr:nth-child(odd) { |
||||||
|
background-color:rgba(145, 204, 255, 0.16); |
||||||
|
} |
||||||
|
tr:nth-child(even) { |
||||||
|
background-color:#fff; |
||||||
|
} |
||||||
|
tr th:nth-child(1),td:nth-child(1){ |
||||||
|
box-sizing: border-box; |
||||||
|
padding-left: 5%; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,46 @@ |
|||||||
|
import { HttpClient } from '@angular/common/http'; |
||||||
|
import { Component, OnInit } from '@angular/core'; |
||||||
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
||||||
|
@Component({ |
||||||
|
selector: 'app-push', |
||||||
|
templateUrl: './push.component.html', |
||||||
|
styleUrls: ['./push.component.scss'] |
||||||
|
}) |
||||||
|
|
||||||
|
export class PushComponent implements OnInit { |
||||||
|
|
||||||
|
validateForm!: FormGroup; |
||||||
|
constructor(private fb: FormBuilder, private http: HttpClient) { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
this.validateForm = this.fb.group({ |
||||||
|
search: [null] |
||||||
|
}); |
||||||
|
this.getViolation() |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
//获取预警类型
|
||||||
|
list:any |
||||||
|
getViolation() { |
||||||
|
this.http.get('/api/services/app/Violation/GetAllList').subscribe((data:any) => { |
||||||
|
this.list = data.result |
||||||
|
console.log('预警类型', data) |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
edititem(item){ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//搜索框提交
|
||||||
|
submitForm(): void { |
||||||
|
for (const i in this.validateForm.controls) { |
||||||
|
this.validateForm.controls[i].markAsDirty(); |
||||||
|
this.validateForm.controls[i].updateValueAndValidity(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
After Width: | Height: | Size: 441 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 364 KiB |
Before Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 95 KiB |
@ -1,668 +0,0 @@ |
|||||||
{ |
|
||||||
"asset" : { |
|
||||||
"generator" : "Khronos glTF Blender I/O v1.6.16", |
|
||||||
"version" : "2.0" |
|
||||||
}, |
|
||||||
"extensionsUsed" : [ |
|
||||||
"KHR_draco_mesh_compression" |
|
||||||
], |
|
||||||
"extensionsRequired" : [ |
|
||||||
"KHR_draco_mesh_compression" |
|
||||||
], |
|
||||||
"scene" : 0, |
|
||||||
"scenes" : [ |
|
||||||
{ |
|
||||||
"name" : "Scene", |
|
||||||
"nodes" : [ |
|
||||||
2 |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
"nodes" : [ |
|
||||||
{ |
|
||||||
"mesh" : 0, |
|
||||||
"name" : "PZ", |
|
||||||
"scale" : [ |
|
||||||
0.009999999776482582, |
|
||||||
0.009999999776482582, |
|
||||||
0.009999999776482582 |
|
||||||
], |
|
||||||
"translation" : [ |
|
||||||
0, |
|
||||||
0, |
|
||||||
0.37858137488365173 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"children" : [ |
|
||||||
0 |
|
||||||
], |
|
||||||
"mesh" : 1, |
|
||||||
"name" : "PT", |
|
||||||
"translation" : [ |
|
||||||
-0.17859923839569092, |
|
||||||
1.069671392440796, |
|
||||||
-0.09293144941329956 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"children" : [ |
|
||||||
1 |
|
||||||
], |
|
||||||
"mesh" : 2, |
|
||||||
"name" : "MHF" |
|
||||||
} |
|
||||||
], |
|
||||||
"materials" : [ |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "ShuiQiang.004", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 0 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "BunkerClothing_AlbedoTransparency.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 1 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "Helmet_AlbedoTransparency.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 2 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"alphaMode" : "BLEND", |
|
||||||
"name" : "Glasses.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorFactor" : [ |
|
||||||
0.5882350206375122, |
|
||||||
0.5882350206375122, |
|
||||||
0.5882350206375122, |
|
||||||
0.3897058963775635 |
|
||||||
], |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "Straps_AlbedoTransparency.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 3 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "Head_AlbedoTransparency.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 4 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "Boots_AlbedoTransparency.003", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 5 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"meshes" : [ |
|
||||||
{ |
|
||||||
"name" : "\u7acb\u65b9\u4f53.003", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 0, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 3, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "WaterGun.003", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 4, |
|
||||||
"NORMAL" : 5, |
|
||||||
"TEXCOORD_0" : 6 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 1, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 7, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "MieHuoFu.003", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 8, |
|
||||||
"NORMAL" : 9, |
|
||||||
"TEXCOORD_0" : 10 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 2, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 11, |
|
||||||
"material" : 1, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 12, |
|
||||||
"NORMAL" : 13, |
|
||||||
"TEXCOORD_0" : 14 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 3, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 15, |
|
||||||
"material" : 2, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 16, |
|
||||||
"NORMAL" : 17, |
|
||||||
"TEXCOORD_0" : 18 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 4, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 19, |
|
||||||
"material" : 3, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 20, |
|
||||||
"NORMAL" : 21, |
|
||||||
"TEXCOORD_0" : 22 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 5, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 23, |
|
||||||
"material" : 4, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 24, |
|
||||||
"NORMAL" : 25, |
|
||||||
"TEXCOORD_0" : 26 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 6, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 27, |
|
||||||
"material" : 5, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 28, |
|
||||||
"NORMAL" : 29, |
|
||||||
"TEXCOORD_0" : 30 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 7, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 31, |
|
||||||
"material" : 6, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
"textures" : [ |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 0 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 2 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 3 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 5 |
|
||||||
} |
|
||||||
], |
|
||||||
"images" : [ |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "ShuiQiang", |
|
||||||
"uri" : "ShuiQiang.jpg" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/png", |
|
||||||
"name" : "BunkerClothing_AlbedoTransparency", |
|
||||||
"uri" : "BunkerClothing_AlbedoTransparency.png" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "Helmet_AlbedoTransparency", |
|
||||||
"uri" : "Helmet_AlbedoTransparency.jpg" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "Straps_AlbedoTransparency", |
|
||||||
"uri" : "Straps_AlbedoTransparency.jpg" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "Head_AlbedoTransparency", |
|
||||||
"uri" : "Head_AlbedoTransparency.jpg" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "Boots_AlbedoTransparency", |
|
||||||
"uri" : "Boots_AlbedoTransparency.jpg" |
|
||||||
} |
|
||||||
], |
|
||||||
"accessors" : [ |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"max" : [ |
|
||||||
1, |
|
||||||
1, |
|
||||||
1 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-1, |
|
||||||
-1, |
|
||||||
-1 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 36, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1430, |
|
||||||
"max" : [ |
|
||||||
0.07184479385614395, |
|
||||||
0.07184479385614395, |
|
||||||
0.39843103289604187 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.07183649390935898, |
|
||||||
-0.07183649390935898, |
|
||||||
-1.3987065727860681e-08 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1430, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1430, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 2964, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3652, |
|
||||||
"max" : [ |
|
||||||
0.31568726897239685, |
|
||||||
1.579005241394043, |
|
||||||
0.21250030398368835 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.3100007474422455, |
|
||||||
0.029164545238018036, |
|
||||||
-0.16183406114578247 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3652, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3652, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 15516, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 4746, |
|
||||||
"max" : [ |
|
||||||
0.13183458149433136, |
|
||||||
1.8140419721603394, |
|
||||||
0.16708354651927948 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.13521797955036163, |
|
||||||
1.4775199890136719, |
|
||||||
-0.1361415833234787 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 4746, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 4746, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 22830, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1514, |
|
||||||
"max" : [ |
|
||||||
0.11418724805116653, |
|
||||||
1.6796936988830566, |
|
||||||
0.1821955293416977 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.1096891537308693, |
|
||||||
1.5852127075195312, |
|
||||||
0.0685286819934845 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1514, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1514, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 7860, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 5342, |
|
||||||
"max" : [ |
|
||||||
0.09371404349803925, |
|
||||||
1.7351529598236084, |
|
||||||
0.14662612974643707 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.08921344578266144, |
|
||||||
1.498990535736084, |
|
||||||
-0.036142800003290176 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 5342, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 5342, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 15522, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3829, |
|
||||||
"max" : [ |
|
||||||
0.09659265726804733, |
|
||||||
1.7590115070343018, |
|
||||||
0.1568334698677063 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.0969589576125145, |
|
||||||
1.455280065536499, |
|
||||||
-0.08099030703306198 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3829, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 3829, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 21555, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1388, |
|
||||||
"max" : [ |
|
||||||
0.2262089103460312, |
|
||||||
0.2532302439212799, |
|
||||||
0.18883022665977478 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.2262089103460312, |
|
||||||
-2.776151220018619e-08, |
|
||||||
-0.10604356974363327 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1388, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 1388, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 5148, |
|
||||||
"type" : "SCALAR" |
|
||||||
} |
|
||||||
], |
|
||||||
"bufferViews" : [ |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 264, |
|
||||||
"byteOffset" : 0 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 8908, |
|
||||||
"byteOffset" : 264 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 28138, |
|
||||||
"byteOffset" : 9172 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 34016, |
|
||||||
"byteOffset" : 37312 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 9580, |
|
||||||
"byteOffset" : 71328 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 37426, |
|
||||||
"byteOffset" : 80908 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 27725, |
|
||||||
"byteOffset" : 118336 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 11416, |
|
||||||
"byteOffset" : 146064 |
|
||||||
} |
|
||||||
], |
|
||||||
"samplers" : [ |
|
||||||
{ |
|
||||||
"magFilter" : 9729, |
|
||||||
"minFilter" : 9987 |
|
||||||
} |
|
||||||
], |
|
||||||
"buffers" : [ |
|
||||||
{ |
|
||||||
"byteLength" : 157480, |
|
||||||
"uri" : "MHF.bin" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,5 +0,0 @@ |
|||||||
{ |
|
||||||
"version" : 1, |
|
||||||
"enableSceneOffline" : true, |
|
||||||
"enableTexturesOffline" : true |
|
||||||
} |
|
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 638 KiB |
@ -1,796 +0,0 @@ |
|||||||
{ |
|
||||||
"asset" : { |
|
||||||
"generator" : "Khronos glTF Blender I/O v1.6.16", |
|
||||||
"version" : "2.0" |
|
||||||
}, |
|
||||||
"extensionsUsed" : [ |
|
||||||
"KHR_draco_mesh_compression" |
|
||||||
], |
|
||||||
"extensionsRequired" : [ |
|
||||||
"KHR_draco_mesh_compression" |
|
||||||
], |
|
||||||
"scene" : 0, |
|
||||||
"scenes" : [ |
|
||||||
{ |
|
||||||
"name" : "Scene", |
|
||||||
"nodes" : [ |
|
||||||
4, |
|
||||||
5, |
|
||||||
6, |
|
||||||
8 |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
"nodes" : [ |
|
||||||
{ |
|
||||||
"mesh" : 0, |
|
||||||
"name" : "BL", |
|
||||||
"translation" : [ |
|
||||||
0.930389404296875, |
|
||||||
0.5263820886611938, |
|
||||||
-1.2779022455215454 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 1, |
|
||||||
"name" : "BR", |
|
||||||
"translation" : [ |
|
||||||
-0.8709052801132202, |
|
||||||
0.5263820886611938, |
|
||||||
-1.2779022455215454 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 2, |
|
||||||
"name" : "FL", |
|
||||||
"translation" : [ |
|
||||||
0.9883639812469482, |
|
||||||
0.526381254196167, |
|
||||||
2.525930166244507 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 3, |
|
||||||
"name" : "FR", |
|
||||||
"translation" : [ |
|
||||||
-0.9485308527946472, |
|
||||||
0.526381254196167, |
|
||||||
2.525930166244507 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"children" : [ |
|
||||||
0, |
|
||||||
1, |
|
||||||
2, |
|
||||||
3 |
|
||||||
], |
|
||||||
"name" : "wheelModels" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 4, |
|
||||||
"name" : "Glass" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 5, |
|
||||||
"name" : "Body" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mesh" : 6, |
|
||||||
"name" : "PZ", |
|
||||||
"scale" : [ |
|
||||||
0.009999999776482582, |
|
||||||
0.009999999776482582, |
|
||||||
0.009999999776482582 |
|
||||||
], |
|
||||||
"translation" : [ |
|
||||||
0.0015363730490207672, |
|
||||||
0.014608621597290039, |
|
||||||
0.6146829128265381 |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"children" : [ |
|
||||||
7 |
|
||||||
], |
|
||||||
"mesh" : 7, |
|
||||||
"name" : "PT", |
|
||||||
"translation" : [ |
|
||||||
0.032101746648550034, |
|
||||||
3.3492186069488525, |
|
||||||
-1.230138897895813 |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
"materials" : [ |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "FireCar.002", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 0 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "CarGlass", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorFactor" : [ |
|
||||||
0.07656104862689972, |
|
||||||
0.06475582718849182, |
|
||||||
0.04368578642606735, |
|
||||||
1 |
|
||||||
], |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.15441176295280457 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"doubleSided" : true, |
|
||||||
"name" : "CarColor", |
|
||||||
"pbrMetallicRoughness" : { |
|
||||||
"baseColorTexture" : { |
|
||||||
"index" : 1 |
|
||||||
}, |
|
||||||
"metallicFactor" : 0, |
|
||||||
"roughnessFactor" : 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"meshes" : [ |
|
||||||
{ |
|
||||||
"name" : "BL", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 0, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 4, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "BR", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 5, |
|
||||||
"NORMAL" : 6, |
|
||||||
"TEXCOORD_0" : 7, |
|
||||||
"TEXCOORD_1" : 8 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 1, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 9, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "FL", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 10, |
|
||||||
"NORMAL" : 11, |
|
||||||
"TEXCOORD_0" : 12, |
|
||||||
"TEXCOORD_1" : 13 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 2, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 14, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "FR", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 15, |
|
||||||
"NORMAL" : 16, |
|
||||||
"TEXCOORD_0" : 17, |
|
||||||
"TEXCOORD_1" : 18 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 3, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 14, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "Glass", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 19, |
|
||||||
"NORMAL" : 20, |
|
||||||
"TEXCOORD_0" : 21, |
|
||||||
"TEXCOORD_1" : 22 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 4, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 23, |
|
||||||
"material" : 1, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "Body", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 24, |
|
||||||
"NORMAL" : 25, |
|
||||||
"TEXCOORD_0" : 26, |
|
||||||
"TEXCOORD_1" : 27, |
|
||||||
"TEXCOORD_2" : 28, |
|
||||||
"TEXCOORD_3" : 29 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 5, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3, |
|
||||||
"TEXCOORD_2" : 4, |
|
||||||
"TEXCOORD_3" : 5 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 30, |
|
||||||
"material" : 2, |
|
||||||
"mode" : 4 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 31, |
|
||||||
"NORMAL" : 32, |
|
||||||
"TEXCOORD_0" : 33, |
|
||||||
"TEXCOORD_1" : 34, |
|
||||||
"TEXCOORD_2" : 35, |
|
||||||
"TEXCOORD_3" : 36 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 6, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3, |
|
||||||
"TEXCOORD_2" : 4, |
|
||||||
"TEXCOORD_3" : 5 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 37, |
|
||||||
"material" : 0, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "\u7acb\u65b9\u4f53.008", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 38, |
|
||||||
"NORMAL" : 39, |
|
||||||
"TEXCOORD_0" : 40 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 7, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 41, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name" : "WaterGun", |
|
||||||
"primitives" : [ |
|
||||||
{ |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 42, |
|
||||||
"NORMAL" : 43, |
|
||||||
"TEXCOORD_0" : 44, |
|
||||||
"TEXCOORD_1" : 45 |
|
||||||
}, |
|
||||||
"extensions" : { |
|
||||||
"KHR_draco_mesh_compression" : { |
|
||||||
"bufferView" : 8, |
|
||||||
"attributes" : { |
|
||||||
"POSITION" : 0, |
|
||||||
"NORMAL" : 1, |
|
||||||
"TEXCOORD_0" : 2, |
|
||||||
"TEXCOORD_1" : 3 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"indices" : 46, |
|
||||||
"material" : 2, |
|
||||||
"mode" : 4 |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
"textures" : [ |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 0 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"sampler" : 0, |
|
||||||
"source" : 1 |
|
||||||
} |
|
||||||
], |
|
||||||
"images" : [ |
|
||||||
{ |
|
||||||
"mimeType" : "image/jpeg", |
|
||||||
"name" : "FireCar", |
|
||||||
"uri" : "FireCar.jpg" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"mimeType" : "image/png", |
|
||||||
"name" : "CarColor", |
|
||||||
"uri" : "CarColor.png" |
|
||||||
} |
|
||||||
], |
|
||||||
"accessors" : [ |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 289, |
|
||||||
"max" : [ |
|
||||||
0.2735353708267212, |
|
||||||
0.5016516447067261, |
|
||||||
0.5016562938690186 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.3255194425582886, |
|
||||||
-0.5016518831253052, |
|
||||||
-0.5016472339630127 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 289, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 289, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 289, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 1068, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 284, |
|
||||||
"max" : [ |
|
||||||
0.27353453636169434, |
|
||||||
0.5016516447067261, |
|
||||||
0.5016562938690186 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.32552027702331543, |
|
||||||
-0.5016518831253052, |
|
||||||
-0.5016472339630127 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 284, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 284, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 284, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 1068, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"max" : [ |
|
||||||
0.12047308683395386, |
|
||||||
0.5016517639160156, |
|
||||||
0.5016556978225708 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.1725015640258789, |
|
||||||
-0.5016516447067261, |
|
||||||
-0.5016477108001709 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 588, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"max" : [ |
|
||||||
0.12047266960144043, |
|
||||||
0.5016517639160156, |
|
||||||
0.5016556978225708 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.17250198125839233, |
|
||||||
-0.5016516447067261, |
|
||||||
-0.5016477108001709 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 148, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 146, |
|
||||||
"max" : [ |
|
||||||
1.2894694805145264, |
|
||||||
2.566256523132324, |
|
||||||
3.534332752227783 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-1.2894694805145264, |
|
||||||
1.629791498184204, |
|
||||||
1.1941930055618286 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 146, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 146, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 146, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 474, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"max" : [ |
|
||||||
1.3214938640594482, |
|
||||||
3.396054267883301, |
|
||||||
3.7334296703338623 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-1.3215093612670898, |
|
||||||
0.06301689147949219, |
|
||||||
-3.7334306240081787 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 10285, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 19134, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"max" : [ |
|
||||||
1.1970285177230835, |
|
||||||
2.388274908065796, |
|
||||||
3.7181694507598877 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-1.1981037855148315, |
|
||||||
0.2322521060705185, |
|
||||||
-3.6314189434051514 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 116, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 156, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"max" : [ |
|
||||||
1, |
|
||||||
1, |
|
||||||
1 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-1, |
|
||||||
-1, |
|
||||||
-1 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 24, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 36, |
|
||||||
"type" : "SCALAR" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 296, |
|
||||||
"max" : [ |
|
||||||
0.12257297337055206, |
|
||||||
0.08071567118167877, |
|
||||||
0.6802297830581665 |
|
||||||
], |
|
||||||
"min" : [ |
|
||||||
-0.11950023472309113, |
|
||||||
-0.0514986515045166, |
|
||||||
-0.5285130739212036 |
|
||||||
], |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 296, |
|
||||||
"type" : "VEC3" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 296, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5126, |
|
||||||
"count" : 296, |
|
||||||
"type" : "VEC2" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"componentType" : 5123, |
|
||||||
"count" : 516, |
|
||||||
"type" : "SCALAR" |
|
||||||
} |
|
||||||
], |
|
||||||
"bufferViews" : [ |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 3246, |
|
||||||
"byteOffset" : 0 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 3168, |
|
||||||
"byteOffset" : 3248 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 1761, |
|
||||||
"byteOffset" : 6416 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 1773, |
|
||||||
"byteOffset" : 8180 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 1721, |
|
||||||
"byteOffset" : 9956 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 77456, |
|
||||||
"byteOffset" : 11680 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 1695, |
|
||||||
"byteOffset" : 89136 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 264, |
|
||||||
"byteOffset" : 90832 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"buffer" : 0, |
|
||||||
"byteLength" : 3101, |
|
||||||
"byteOffset" : 91096 |
|
||||||
} |
|
||||||
], |
|
||||||
"samplers" : [ |
|
||||||
{ |
|
||||||
"magFilter" : 9729, |
|
||||||
"minFilter" : 9987 |
|
||||||
} |
|
||||||
], |
|
||||||
"buffers" : [ |
|
||||||
{ |
|
||||||
"byteLength" : 94200, |
|
||||||
"uri" : "PMC.bin" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,5 +0,0 @@ |
|||||||
{ |
|
||||||
"version" : 1, |
|
||||||
"enableSceneOffline" : true, |
|
||||||
"enableTexturesOffline" : true |
|
||||||
} |
|