@ -0,0 +1,22 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 灭火器 |
||||
*/ |
||||
export class PropertyData_MHQ extends PropertyData_Base { |
||||
|
||||
|
||||
|
||||
constructor(key: string, facilityType: FacilityType) { |
||||
super(key, facilityType); |
||||
|
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_MHQ(key, this.facilityType); |
||||
return result; |
||||
} |
||||
|
||||
} |
@ -1,31 +0,0 @@
|
||||
import { Color3, Color4 } from "@babylonjs/core"; |
||||
import { Type } from "class-transformer"; |
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 防火分区 |
||||
*/ |
||||
export class PropertyData_FHFQ extends PropertyData_Base { |
||||
|
||||
|
||||
name: string = "";//名称
|
||||
area: string = "";//面积
|
||||
@Type(() => Color3) |
||||
color: Color3 = Color3.Red();//颜色
|
||||
constructor(key: string, name: string, area: string, color: Color3 = Color3.Red()) { |
||||
super(key, FacilityType.FHFQ); |
||||
this.name = name; |
||||
this.area = area; |
||||
this.color = color; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_FHFQ(key, this.name, this.area, this.color); |
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -1,26 +0,0 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base_LT } from "../base/property-data-base-lt"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 疏散楼梯 |
||||
*/ |
||||
export class PropertyData_SSLT extends PropertyData_Base_LT { |
||||
|
||||
width: string = "";//宽度
|
||||
|
||||
constructor(key: string, number: string, channel: string, width: string) { |
||||
super(key, number, channel, FacilityType.SSLT); |
||||
this.width = width; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_SSLT(key, this.number, this.channel, this.width); |
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -1,24 +0,0 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base_LT } from "../base/property-data-base-lt"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 消防电梯 |
||||
*/ |
||||
export class PropertyData_XFDT extends PropertyData_Base_LT { |
||||
|
||||
weight: string = "";//载重
|
||||
|
||||
constructor(key: string, number: string, channel: string, weight: string) { |
||||
super(key, number, channel, FacilityType.XFDT); |
||||
this.weight = weight; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_XFDT(key, this.number, this.channel, this.weight); |
||||
return result; |
||||
} |
||||
|
||||
|
||||
} |
@ -1,42 +0,0 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 重点区域 |
||||
*/ |
||||
export class PropertyData_ZDQY extends PropertyData_Base { |
||||
|
||||
name: string = "";//名称
|
||||
pos: string = "";//所在位置
|
||||
construction: string = "";//建筑结构
|
||||
character: string = "";//使用性质
|
||||
danger: string = "";//主要危险性
|
||||
imgs: string[] = [];//图片
|
||||
|
||||
constructor(key: string, name: string, pos: string, construction: string, character: string, danger: string, imgs: string[]) { |
||||
super(key, FacilityType.ZDQY); |
||||
this.name = name; |
||||
this.pos = pos; |
||||
this.construction = construction; |
||||
this.character = character; |
||||
this.danger = danger; |
||||
this.imgs = imgs; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
|
||||
let newImgs: string[] = []; |
||||
|
||||
for (let i = 0; i < this.imgs.length; i++) { |
||||
newImgs.push(this.imgs[i]); |
||||
} |
||||
|
||||
let result = new PropertyData_ZDQY(key, this.name, this.pos, this.construction, this.character, this.danger, newImgs); |
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -1,31 +0,0 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 安全出口 |
||||
*/ |
||||
export class PropertyData_AQCK extends PropertyData_Base { |
||||
|
||||
img: string = ""; |
||||
is360: boolean;//全景图片
|
||||
name: string = "安全出口"; |
||||
width: string = ""; |
||||
constructor(key: string, img: string, is360: boolean, name: string, width: string) { |
||||
super(key, FacilityType.AQCK); |
||||
this.img = img; |
||||
this.is360 = is360; |
||||
this.name = name; |
||||
this.width = width; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_AQCK(key, this.img, this.is360, "安全出口", "1"); |
||||
|
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -1,26 +0,0 @@
|
||||
|
||||
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||
import { PropertyData_Base } from "../property-data-base"; |
||||
|
||||
/** |
||||
* 高度 |
||||
*/ |
||||
export class PropertyData_GD extends PropertyData_Base { |
||||
|
||||
|
||||
info: string = ""; |
||||
constructor(key: string, info: string) { |
||||
super(key, FacilityType.GD); |
||||
this.info = info; |
||||
} |
||||
|
||||
clone(key: string) { |
||||
let result = new PropertyData_GD(key, this.info); |
||||
|
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -1,267 +0,0 @@
|
||||
//#region 高度
|
||||
|
||||
import { AbstractMesh, MeshBuilder, Color3, Vector3, Mesh, Observer, Scene, Vector2 } from "@babylonjs/core"; |
||||
import { Control, Button } from "@babylonjs/gui"; |
||||
import { GridMaterial } from "@babylonjs/materials"; |
||||
import { ModeManager, ModeType } from "src/app/babylon/controller/mode-manager"; |
||||
import { SceneManager } from "src/app/babylon/controller/scene-manager"; |
||||
import { UIManager } from "src/app/babylon/controller/ui-manager"; |
||||
import { BabylonUIStyleTool, UI_LineInfo } from "src/app/babylon/tool/babylon-ui-style-tool"; |
||||
import { GizmoTool, TransformUIType } from "src/app/babylon/tool/gizmo-tool"; |
||||
|
||||
import { PropertyData_GD } from "../../../data/institution/facility/property-data/outdoor/property-data-gd"; |
||||
import { ModelData_facility } from "../../../data/model-data/model-data-facility"; |
||||
|
||||
import { ModelInfo_facility } from "../model-info-facility"; |
||||
|
||||
/** |
||||
* 高度信息 |
||||
*/ |
||||
export class GdInfo { |
||||
|
||||
pointData_start: Vector3;//起位
|
||||
pointData_end: Vector3;//终点
|
||||
|
||||
material: GridMaterial; |
||||
belongToFacility: ModelInfo_facility; |
||||
|
||||
myPath: Vector3[] = []; |
||||
myTube: Mesh; |
||||
gdMeshPoints: GdMeshPoint[] = []; |
||||
|
||||
isShow: boolean; |
||||
onGizmoAimMeshObserver: Observer<AbstractMesh>; |
||||
updateObserver: Observer<Scene>; |
||||
|
||||
constructor(startPoint: Vector3, endPoint: Vector3, belongToFacility: ModelInfo_facility) { |
||||
let instance = this; |
||||
this.belongToFacility = belongToFacility; |
||||
this.pointData_start = startPoint; |
||||
|
||||
let point_start = new GdMeshPoint(this, this.pointData_start, false); |
||||
this.gdMeshPoints.push(point_start); |
||||
|
||||
this.pointData_end = endPoint; |
||||
let point_end = new GdMeshPoint(this, this.pointData_end, true); |
||||
this.gdMeshPoints.push(point_end); |
||||
|
||||
this.myPath.push(point_start.pos); |
||||
this.myPath.push(point_end.pos); |
||||
this.updateObserver = SceneManager.Instance.scene.onBeforeRenderObservable.add(() => { |
||||
instance.update(); |
||||
}); |
||||
this.onGizmoAimMeshObserver = GizmoTool.onGizmoAimMeshObservable.add((mesh) => { |
||||
instance.onChangeGizmo(mesh); |
||||
}) |
||||
|
||||
this.createMesh(); |
||||
|
||||
|
||||
} |
||||
|
||||
createMesh() { |
||||
this.myTube = MeshBuilder.CreateTube("tube", { path: this.myPath, radius: 2, sideOrientation: Mesh.DOUBLESIDE, updatable: true }, SceneManager.Instance.scene); |
||||
this.myTube.parent = this.belongToFacility.modelBox; |
||||
this.myTube.position = Vector3.Zero(); |
||||
this.material = new GridMaterial("mat_myTube", SceneManager.Instance.scene); |
||||
this.material.mainColor = Color3.FromHexString(BabylonUIStyleTool.c_color_3d_blue); // new Color3(0, 0.5, 1)
|
||||
this.material.lineColor = new Color3(0, 0, 0); |
||||
this.myTube.material = this.material; |
||||
} |
||||
|
||||
update() { |
||||
this.gdMeshPoints[1].mesh.position.x = 0; |
||||
this.gdMeshPoints[1].mesh.position.z = 0; |
||||
this.myPath[1] = this.gdMeshPoints[1].mesh.position; |
||||
this.myTube = MeshBuilder.CreateTube("tube", { path: this.myPath, radius: 2, sideOrientation: Mesh.DOUBLESIDE, updatable: true, instance: this.myTube }, SceneManager.Instance.scene); |
||||
let facilityData = this.belongToFacility.modelData as ModelData_facility; |
||||
let property = facilityData.propertyData as PropertyData_GD; |
||||
this.gdMeshPoints[1].updateInfo(property.info); |
||||
} |
||||
|
||||
|
||||
|
||||
//释放
|
||||
dispose() { |
||||
SceneManager.Instance.scene.onBeforeRenderObservable.remove(this.updateObserver); |
||||
GizmoTool.onGizmoAimMeshObservable.remove(this.onGizmoAimMeshObserver); |
||||
this.updateObserver = null; |
||||
|
||||
for (let i = 0; i < this.gdMeshPoints.length; i++) { |
||||
this.gdMeshPoints[i].dispose(); |
||||
} |
||||
|
||||
this.material.dispose(); |
||||
this.myTube.dispose(); |
||||
} |
||||
|
||||
onChangeGizmo(mesh: AbstractMesh) { |
||||
// if (mesh != null) {
|
||||
// this.isShow = mesh == this.belongToFacility.modelBox || this.isPosPointMesh(mesh);
|
||||
// this.setEnable(this.isShow);
|
||||
// }
|
||||
// else {
|
||||
// this.setEnable(false);
|
||||
// }
|
||||
|
||||
} |
||||
|
||||
//是否是位点mesh
|
||||
isPosPointMesh(mesh: AbstractMesh): boolean { |
||||
|
||||
if (mesh == null) { |
||||
return false; |
||||
} |
||||
|
||||
for (let i = 0; i < this.gdMeshPoints.length; i++) { |
||||
if (mesh == this.gdMeshPoints[i].mesh) { |
||||
return true; |
||||
} |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
|
||||
|
||||
setEnable(show: boolean) { |
||||
for (let i = 0; i < this.gdMeshPoints.length; i++) { |
||||
this.gdMeshPoints[i].setEnable(show); |
||||
} |
||||
} |
||||
|
||||
|
||||
setUIEnable(show: boolean) { |
||||
for (let i = 0; i < this.gdMeshPoints.length; i++) { |
||||
this.gdMeshPoints[i].showEditUI(show); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
/** |
||||
* 高度mesh |
||||
*/ |
||||
export class GdMeshPoint { |
||||
|
||||
pos: Vector3; |
||||
canSet: boolean; |
||||
gdInfo: GdInfo; |
||||
uiRoot: Button; |
||||
|
||||
lineInfo: UI_LineInfo; |
||||
|
||||
mesh: Mesh; |
||||
constructor(gdInfo: GdInfo, pos: Vector3, canSet: boolean) { |
||||
this.pos = pos; |
||||
this.canSet = canSet; |
||||
if (canSet) { |
||||
this.gdInfo = gdInfo; |
||||
this.mesh = MeshBuilder.CreateBox(gdInfo.belongToFacility.modelBox.name + "_point", { size: 1 }); |
||||
this.mesh.setParent(gdInfo.belongToFacility.modelBox); |
||||
this.mesh.position = pos; |
||||
this.mesh.isVisible = false; |
||||
|
||||
|
||||
this.initEditUI(); |
||||
|
||||
this.lineInfo = BabylonUIStyleTool.createLineInfo(gdInfo.belongToFacility.modelBox.name, this.mesh); |
||||
|
||||
this.showEditUI(false); |
||||
|
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
//初始化 编辑UI
|
||||
initEditUI() { |
||||
if (ModeManager.currentMode == ModeType.Edit) { |
||||
let instance = this; |
||||
this.uiRoot = Button.CreateImageButton("ui_editPoint_" + this.gdInfo.belongToFacility.modelBox.name, "", "assets/images/ui/edit.png"); |
||||
UIManager.Instance.uiRoot.addControl(this.uiRoot); |
||||
this.uiRoot.linkWithMesh(this.mesh); |
||||
this.uiRoot.linkOffsetYInPixels = 20; |
||||
this.uiRoot.linkOffsetXInPixels = -40; |
||||
BabylonUIStyleTool.setStyle_size(this.uiRoot, "20px", "20px"); |
||||
this.uiRoot.image.width = 0.8; |
||||
this.uiRoot.image.horizontalAlignment = Control.HORIZONTAL_ALIGNMENT_CENTER; |
||||
this.uiRoot.image.verticalAlignment = Control.HORIZONTAL_ALIGNMENT_CENTER; |
||||
// this.uiRoot.thickness = 0;
|
||||
this.uiRoot.background = BabylonUIStyleTool.c_color_3d_blueBg; |
||||
this.uiRoot.color = BabylonUIStyleTool.c_color_3d_blue; |
||||
// this.uiRoot.alpha = 0.7;
|
||||
this.uiRoot.onPointerClickObservable.add(() => { |
||||
instance.changeAim(); |
||||
}); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
//显示或隐藏 编辑UI
|
||||
showEditUI(show: boolean) { |
||||
if (this.uiRoot != null) { |
||||
this.uiRoot.isVisible = show && this.canSet; |
||||
} |
||||
|
||||
} |
||||
|
||||
//显示、隐藏标识UI
|
||||
setEnable(show: boolean) { |
||||
if (this.lineInfo != null) { |
||||
this.lineInfo.setEnable(show); |
||||
} |
||||
this.showEditUI(show && ModeManager.currentMode == ModeType.Edit); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
//改变选中的目标
|
||||
changeAim() { |
||||
let instance = this; |
||||
GizmoTool.onTransformUITypeChange(TransformUIType.Position);//强行变为position
|
||||
GizmoTool.changeGizmoAim(instance.mesh, false, true, false); |
||||
// PosPointTool.attachMesh(instance.mesh as Mesh, instance.pos,
|
||||
// () => {
|
||||
// instance.addPoint();
|
||||
// },
|
||||
// () => {
|
||||
// instance.reducePoint();
|
||||
// }
|
||||
// );
|
||||
//如果需要增加节点,在此拓展
|
||||
} |
||||
|
||||
dispose() { |
||||
|
||||
|
||||
if (this.canSet) { |
||||
if (this.uiRoot != null) { |
||||
this.uiRoot.dispose(); |
||||
} |
||||
|
||||
GizmoTool.leaveTheGizmoAimMesh(this.mesh); |
||||
this.mesh.dispose(); |
||||
this.lineInfo.dispose(); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 更新显示内容 |
||||
* @param text
|
||||
*/ |
||||
updateInfo(text: string) { |
||||
if (this.lineInfo.info != null) { |
||||
this.lineInfo.info.text = "高度:" + text; |
||||
this.lineInfo.info.resizeToFit = true; |
||||
this.lineInfo.infoBg.height = (this.lineInfo.info.heightInPixels + 5) + "px"; |
||||
} |
||||
} |
||||
} |
||||
|
||||
//#endregion
|
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 243 B |
After Width: | Height: | Size: 242 B |
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,174 @@
|
||||
{ |
||||
"asset": { |
||||
"version": "2.0", |
||||
"generator": "babylon.js glTF exporter for 3dsmax 2020 v20201214.2" |
||||
}, |
||||
"scene": 0, |
||||
"scenes": [ |
||||
{ |
||||
"nodes": [ |
||||
0 |
||||
] |
||||
} |
||||
], |
||||
"nodes": [ |
||||
{ |
||||
"mesh": 0, |
||||
"rotation": [ |
||||
0.7071068, |
||||
0, |
||||
0, |
||||
0.7071067 |
||||
], |
||||
"name": "DWBZ", |
||||
"translation": [ |
||||
0, |
||||
0, |
||||
0 |
||||
], |
||||
"scale": [ |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
} |
||||
], |
||||
"meshes": [ |
||||
{ |
||||
"primitives": [ |
||||
{ |
||||
"attributes": { |
||||
"POSITION": 1, |
||||
"TANGENT": 2, |
||||
"NORMAL": 3, |
||||
"TEXCOORD_0": 4 |
||||
}, |
||||
"indices": 0, |
||||
"material": 0, |
||||
"mode": 4, |
||||
"extensions": { |
||||
"KHR_draco_mesh_compression": { |
||||
"bufferView": 0, |
||||
"attributes": { |
||||
"POSITION": 0, |
||||
"TANGENT": 1, |
||||
"NORMAL": 2, |
||||
"TEXCOORD_0": 3 |
||||
} |
||||
} |
||||
} |
||||
} |
||||
], |
||||
"name": "DWBZ" |
||||
} |
||||
], |
||||
"accessors": [ |
||||
{ |
||||
"componentType": 5123, |
||||
"count": 1068, |
||||
"type": "SCALAR", |
||||
"name": "accessorIndices" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1068, |
||||
"max": [ |
||||
0.2237389352940401, |
||||
0.23126999538265758, |
||||
0.0024346969171470945 |
||||
], |
||||
"min": [ |
||||
-0.04925561481714704, |
||||
-0.044022137017147044, |
||||
-0.4255422221171471 |
||||
], |
||||
"type": "VEC3", |
||||
"name": "accessorPositions" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1068, |
||||
"type": "VEC4", |
||||
"name": "accessorTangents" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1068, |
||||
"type": "VEC3", |
||||
"name": "accessorNormals" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1068, |
||||
"type": "VEC2", |
||||
"name": "accessorUVs" |
||||
} |
||||
], |
||||
"bufferViews": [ |
||||
{ |
||||
"buffer": 0, |
||||
"byteOffset": 0, |
||||
"byteLength": 18614 |
||||
} |
||||
], |
||||
"buffers": [ |
||||
{ |
||||
"name": "DWBZ", |
||||
"byteLength": 18616, |
||||
"uri": "DWBZ.bin" |
||||
} |
||||
], |
||||
"materials": [ |
||||
{ |
||||
"pbrMetallicRoughness": { |
||||
"baseColorTexture": { |
||||
"index": 0, |
||||
"texCoord": 0 |
||||
}, |
||||
"metallicFactor": 0, |
||||
"roughnessFactor": 0.450053632, |
||||
"baseColorFactor": [ |
||||
1, |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
}, |
||||
"name": "DWBZ", |
||||
"emissiveFactor": [ |
||||
0, |
||||
0, |
||||
0 |
||||
], |
||||
"alphaMode": "OPAQUE", |
||||
"doubleSided": false |
||||
} |
||||
], |
||||
"textures": [ |
||||
{ |
||||
"sampler": 0, |
||||
"source": 0, |
||||
"name": "DWBZ.jpg" |
||||
} |
||||
], |
||||
"images": [ |
||||
{ |
||||
"name": "DWBZ", |
||||
"uri": "DWBZ.jpg" |
||||
} |
||||
], |
||||
"samplers": [ |
||||
{ |
||||
"magFilter": 9729, |
||||
"minFilter": 9987, |
||||
"wrapS": 10497, |
||||
"wrapT": 10497 |
||||
} |
||||
], |
||||
"extensionsRequired": [ |
||||
"KHR_draco_mesh_compression" |
||||
], |
||||
"extensionsUsed": [ |
||||
"KHR_draco_mesh_compression" |
||||
] |
||||
} |
@ -0,0 +1,5 @@
|
||||
{ |
||||
"version" : 1, |
||||
"enableSceneOffline" : true, |
||||
"enableTexturesOffline" : true |
||||
} |
After Width: | Height: | Size: 23 KiB |
@ -0,0 +1,174 @@
|
||||
{ |
||||
"asset": { |
||||
"version": "2.0", |
||||
"generator": "babylon.js glTF exporter for 3dsmax 2020 v20201214.2" |
||||
}, |
||||
"scene": 0, |
||||
"scenes": [ |
||||
{ |
||||
"nodes": [ |
||||
0 |
||||
] |
||||
} |
||||
], |
||||
"nodes": [ |
||||
{ |
||||
"mesh": 0, |
||||
"translation": [ |
||||
0, |
||||
0, |
||||
6.10351549e-7 |
||||
], |
||||
"rotation": [ |
||||
0.7071068, |
||||
0, |
||||
0, |
||||
0.7071067 |
||||
], |
||||
"name": "PL", |
||||
"scale": [ |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
} |
||||
], |
||||
"meshes": [ |
||||
{ |
||||
"primitives": [ |
||||
{ |
||||
"attributes": { |
||||
"POSITION": 1, |
||||
"TANGENT": 2, |
||||
"NORMAL": 3, |
||||
"TEXCOORD_0": 4 |
||||
}, |
||||
"indices": 0, |
||||
"material": 0, |
||||
"mode": 4, |
||||
"extensions": { |
||||
"KHR_draco_mesh_compression": { |
||||
"bufferView": 0, |
||||
"attributes": { |
||||
"POSITION": 0, |
||||
"TANGENT": 1, |
||||
"NORMAL": 2, |
||||
"TEXCOORD_0": 3 |
||||
} |
||||
} |
||||
} |
||||
} |
||||
], |
||||
"name": "PL" |
||||
} |
||||
], |
||||
"accessors": [ |
||||
{ |
||||
"componentType": 5123, |
||||
"count": 1446, |
||||
"type": "SCALAR", |
||||
"name": "accessorIndices" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1302, |
||||
"max": [ |
||||
9.994759744015631, |
||||
9.942144559843674, |
||||
0.01258431331265264 |
||||
], |
||||
"min": [ |
||||
-9.994759744015633, |
||||
-9.940061744015633, |
||||
-0.19228631101563265 |
||||
], |
||||
"type": "VEC3", |
||||
"name": "accessorPositions" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1302, |
||||
"type": "VEC4", |
||||
"name": "accessorTangents" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1302, |
||||
"type": "VEC3", |
||||
"name": "accessorNormals" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 1302, |
||||
"type": "VEC2", |
||||
"name": "accessorUVs" |
||||
} |
||||
], |
||||
"bufferViews": [ |
||||
{ |
||||
"buffer": 0, |
||||
"byteOffset": 0, |
||||
"byteLength": 23001 |
||||
} |
||||
], |
||||
"buffers": [ |
||||
{ |
||||
"name": "PL", |
||||
"byteLength": 23004, |
||||
"uri": "PL.bin" |
||||
} |
||||
], |
||||
"materials": [ |
||||
{ |
||||
"pbrMetallicRoughness": { |
||||
"baseColorTexture": { |
||||
"index": 0, |
||||
"texCoord": 0 |
||||
}, |
||||
"metallicFactor": 0, |
||||
"roughnessFactor": 0.450053632, |
||||
"baseColorFactor": [ |
||||
1, |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
}, |
||||
"alphaMode": "BLEND", |
||||
"name": "PL", |
||||
"emissiveFactor": [ |
||||
0, |
||||
0, |
||||
0 |
||||
], |
||||
"doubleSided": false |
||||
} |
||||
], |
||||
"textures": [ |
||||
{ |
||||
"sampler": 0, |
||||
"source": 0, |
||||
"name": "PL.png" |
||||
} |
||||
], |
||||
"images": [ |
||||
{ |
||||
"name": "PL", |
||||
"uri": "PL.png" |
||||
} |
||||
], |
||||
"samplers": [ |
||||
{ |
||||
"magFilter": 9729, |
||||
"minFilter": 9987, |
||||
"wrapS": 10497, |
||||
"wrapT": 10497 |
||||
} |
||||
], |
||||
"extensionsRequired": [ |
||||
"KHR_draco_mesh_compression" |
||||
], |
||||
"extensionsUsed": [ |
||||
"KHR_draco_mesh_compression" |
||||
] |
||||
} |
@ -0,0 +1,5 @@
|
||||
{ |
||||
"version" : 1, |
||||
"enableSceneOffline" : true, |
||||
"enableTexturesOffline" : true |
||||
} |
After Width: | Height: | Size: 238 B |
@ -0,0 +1,174 @@
|
||||
{ |
||||
"asset": { |
||||
"version": "2.0", |
||||
"generator": "babylon.js glTF exporter for 3dsmax 2020 v20201214.2" |
||||
}, |
||||
"scene": 0, |
||||
"scenes": [ |
||||
{ |
||||
"nodes": [ |
||||
0 |
||||
] |
||||
} |
||||
], |
||||
"nodes": [ |
||||
{ |
||||
"mesh": 0, |
||||
"rotation": [ |
||||
0.7071068, |
||||
0, |
||||
0, |
||||
0.7071067 |
||||
], |
||||
"name": "TPBZ", |
||||
"translation": [ |
||||
0, |
||||
0, |
||||
0 |
||||
], |
||||
"scale": [ |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
} |
||||
], |
||||
"meshes": [ |
||||
{ |
||||
"primitives": [ |
||||
{ |
||||
"attributes": { |
||||
"POSITION": 1, |
||||
"TANGENT": 2, |
||||
"NORMAL": 3, |
||||
"TEXCOORD_0": 4 |
||||
}, |
||||
"indices": 0, |
||||
"material": 0, |
||||
"mode": 4, |
||||
"extensions": { |
||||
"KHR_draco_mesh_compression": { |
||||
"bufferView": 0, |
||||
"attributes": { |
||||
"POSITION": 0, |
||||
"TANGENT": 1, |
||||
"NORMAL": 2, |
||||
"TEXCOORD_0": 3 |
||||
} |
||||
} |
||||
} |
||||
} |
||||
], |
||||
"name": "TPBZ" |
||||
} |
||||
], |
||||
"accessors": [ |
||||
{ |
||||
"componentType": 5123, |
||||
"count": 4908, |
||||
"type": "SCALAR", |
||||
"name": "accessorIndices" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 4908, |
||||
"max": [ |
||||
0.17296450471910108, |
||||
0.17046235425842693, |
||||
0.00027006055056177924 |
||||
], |
||||
"min": [ |
||||
-0.1729830605505618, |
||||
-0.17035406055056182, |
||||
-0.5530840075505618 |
||||
], |
||||
"type": "VEC3", |
||||
"name": "accessorPositions" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 4908, |
||||
"type": "VEC4", |
||||
"name": "accessorTangents" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 4908, |
||||
"type": "VEC3", |
||||
"name": "accessorNormals" |
||||
}, |
||||
{ |
||||
"componentType": 5126, |
||||
"count": 4908, |
||||
"type": "VEC2", |
||||
"name": "accessorUVs" |
||||
} |
||||
], |
||||
"bufferViews": [ |
||||
{ |
||||
"buffer": 0, |
||||
"byteOffset": 0, |
||||
"byteLength": 82936 |
||||
} |
||||
], |
||||
"buffers": [ |
||||
{ |
||||
"name": "TPBZ", |
||||
"byteLength": 82936, |
||||
"uri": "TPBZ.bin" |
||||
} |
||||
], |
||||
"materials": [ |
||||
{ |
||||
"pbrMetallicRoughness": { |
||||
"baseColorTexture": { |
||||
"index": 0, |
||||
"texCoord": 0 |
||||
}, |
||||
"metallicFactor": 0, |
||||
"roughnessFactor": 0.450053632, |
||||
"baseColorFactor": [ |
||||
1, |
||||
1, |
||||
1, |
||||
1 |
||||
] |
||||
}, |
||||
"name": "TPBZ", |
||||
"emissiveFactor": [ |
||||
0, |
||||
0, |
||||
0 |
||||
], |
||||
"alphaMode": "OPAQUE", |
||||
"doubleSided": false |
||||
} |
||||
], |
||||
"textures": [ |
||||
{ |
||||
"sampler": 0, |
||||
"source": 0, |
||||
"name": "TPBZ.jpg" |
||||
} |
||||
], |
||||
"images": [ |
||||
{ |
||||
"name": "TPBZ", |
||||
"uri": "TPBZ.jpg" |
||||
} |
||||
], |
||||
"samplers": [ |
||||
{ |
||||
"magFilter": 9729, |
||||
"minFilter": 9987, |
||||
"wrapS": 10497, |
||||
"wrapT": 10497 |
||||
} |
||||
], |
||||
"extensionsRequired": [ |
||||
"KHR_draco_mesh_compression" |
||||
], |
||||
"extensionsUsed": [ |
||||
"KHR_draco_mesh_compression" |
||||
] |
||||
} |
@ -0,0 +1,5 @@
|
||||
{ |
||||
"version" : 1, |
||||
"enableSceneOffline" : true, |
||||
"enableTexturesOffline" : true |
||||
} |
After Width: | Height: | Size: 16 KiB |