Browse Source

默认隐藏基本信息,处置预案图标名称

master
徐振升 4 years ago
parent
commit
92564aedef
  1. 1
      debug.log
  2. 1
      src/app/working-area/model/axArrowConnector.ts
  3. 5
      src/app/working-area/model/axImageShape.ts
  4. 2
      src/app/working-area/model/axShape.ts
  5. 1
      src/app/working-area/model/multipointIcon.ts
  6. 1
      src/app/working-area/model/polygonIcon.ts
  7. 3
      src/app/working-area/working-area.component.ts

1
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)

1
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() {

5
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);

2
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();

1
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);
}
}

1
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);
// 添加圆点事件

3
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);
}
/**
*

Loading…
Cancel
Save