From 92564aedeffdf2294002e66160ff0570bf731565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=8C=AF=E5=8D=87?= <359059686@qq.com> Date: Sat, 26 Dec 2020 08:53:13 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=9A=90=E8=97=8F=E5=9F=BA?= =?UTF-8?q?=E6=9C=AC=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=A4=84=E7=BD=AE=E9=A2=84?= =?UTF-8?q?=E6=A1=88=E5=9B=BE=E6=A0=87=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debug.log | 1 + src/app/working-area/model/axArrowConnector.ts | 1 + src/app/working-area/model/axImageShape.ts | 5 +---- src/app/working-area/model/axShape.ts | 2 ++ src/app/working-area/model/multipointIcon.ts | 1 + src/app/working-area/model/polygonIcon.ts | 1 + src/app/working-area/working-area.component.ts | 9 +++++---- 7 files changed, 12 insertions(+), 8 deletions(-) diff --git a/debug.log b/debug.log index 65a34a7..01d4421 100644 --- a/debug.log +++ b/debug.log @@ -1,2 +1,3 @@ [1225/112746.821:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3) [1225/152100.333:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3) +[1226/082525.401:ERROR:directory_reader_win.cc(43)] FindFirstFile: 系统找不到指定的路径。 (0x3) diff --git a/src/app/working-area/model/axArrowConnector.ts b/src/app/working-area/model/axArrowConnector.ts index 8b72b39..e334a69 100644 --- a/src/app/working-area/model/axArrowConnector.ts +++ b/src/app/working-area/model/axArrowConnector.ts @@ -51,6 +51,7 @@ export class AxArrowConnector extends AxShape { this.drawPoints(); this.sortableChildren = true; this.text.zIndex = this.children.length; + this.text.visible = this.showName; } public drawPoints() { diff --git a/src/app/working-area/model/axImageShape.ts b/src/app/working-area/model/axImageShape.ts index b59bd9d..9654fca 100644 --- a/src/app/working-area/model/axImageShape.ts +++ b/src/app/working-area/model/axImageShape.ts @@ -139,10 +139,7 @@ export class AxImageShape extends AxShape { this.text.x = this.image.x; this.text.y = this.image.y - this.image.height / 2; this.text.anchor.set(0.5, 1); - - if (this.assetData.GameMode === 2) { - this.text.visible = false; - } + this.text.visible = this.showName; this.addChild(this.text); this.addChild(this.image); this.addChild(this.selectionBox); diff --git a/src/app/working-area/model/axShape.ts b/src/app/working-area/model/axShape.ts index 9ff01a6..14f1359 100644 --- a/src/app/working-area/model/axShape.ts +++ b/src/app/working-area/model/axShape.ts @@ -13,6 +13,8 @@ export class AxShape extends Container { moveable = true; // 鍙互琚変腑鐨 selectable = true; + // 鏄惁鏄剧ず鍚嶇О + showName = true; constructor(assetData: any, workingArea: WorkingAreaComponent) { super(); diff --git a/src/app/working-area/model/multipointIcon.ts b/src/app/working-area/model/multipointIcon.ts index e60b148..8be055f 100644 --- a/src/app/working-area/model/multipointIcon.ts +++ b/src/app/working-area/model/multipointIcon.ts @@ -64,6 +64,7 @@ export class MultipointIcon extends AxShape { this.text.anchor.set(0.5); this.text.position = icon.position; this.text.y -= this.assetData.Height; + this.text.visible = this.showName; this.addChild(this.text); } } diff --git a/src/app/working-area/model/polygonIcon.ts b/src/app/working-area/model/polygonIcon.ts index 20a4a5d..056cb42 100644 --- a/src/app/working-area/model/polygonIcon.ts +++ b/src/app/working-area/model/polygonIcon.ts @@ -73,6 +73,7 @@ export class PolygonIcon extends AxShape { this.text.anchor.set(0.5); this.text.position = this.calculatePolygonGravityCenter(this.pointsData); + this.text.visible = this.showName; // console.log(this.calculatePolygonGravityCenter(this.pointsData)); this.polygonGraphics.addChild(this.text); // 娣诲姞鍦嗙偣浜嬩欢 diff --git a/src/app/working-area/working-area.component.ts b/src/app/working-area/working-area.component.ts index 18a35f5..90f51ee 100644 --- a/src/app/working-area/working-area.component.ts +++ b/src/app/working-area/working-area.component.ts @@ -513,8 +513,9 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV this.processinghiddenData(); } this.createFloorShape(this.canvasData.originaleveryStoreyData.data); - console.log(this.canvasData.selectStorey); this.createNodeShape(this.canvasData.selectPanelPoint.Data); + this.setNameVisible(false, 0); + this.setNameVisible(false, 1); } /** * 澶勭悊闅愯棌鏁版嵁 @@ -555,11 +556,11 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV break; case 3: if (floorData[key].Name === '姘村甫') { - const distance = new AxArrowConnector(floorData[key], this,false,true); + const distance = new AxArrowConnector(floorData[key], this, false, true); } else if(floorData[key].Name === '璺濈'){ - const distance = new AxArrowConnector(floorData[key], this,true,true); + const distance = new AxArrowConnector(floorData[key], this, true, true); }else if(floorData[key].Name === '鏅氬' || floorData[key].Name === '鎵块噸澧'){ - const wall = new AxArrowConnector(floorData[key], this,false,false); + const wall = new AxArrowConnector(floorData[key], this, false, false); } break; }