|
|
|
@ -644,7 +644,6 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
* @param show
|
|
|
|
|
*/ |
|
|
|
|
showJYZModules(type: JYZInfoMoudleType, show: boolean) { |
|
|
|
|
console.log("切换页签", type, show); |
|
|
|
|
if (this.currentBuidngItem == null) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -655,7 +654,6 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
if (this.facilitysByMoudle.has(type)) { |
|
|
|
|
facilityByType = this.facilitysByMoudle.get(type); |
|
|
|
|
} |
|
|
|
|
console.log("显示设备", facilityByType); |
|
|
|
|
for (let i = 0; i < facilityByType.length; i++) { |
|
|
|
|
let infos = facilityByType[i].facilityInfo; |
|
|
|
|
if (infos != null) { |
|
|
|
@ -670,12 +668,10 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
if (this.zdByMoudle.has(type)) { |
|
|
|
|
zdByType = this.zdByMoudle.get(type); |
|
|
|
|
} |
|
|
|
|
console.log("阻挡物", zdByType); |
|
|
|
|
for (let i = 0; i < zdByType.length; i++) { |
|
|
|
|
let infos = zdByType[i].facilityInfo; |
|
|
|
|
if (infos != null) { |
|
|
|
|
for (let j = 0; j < infos.length; j++) { |
|
|
|
|
console.log("隐藏阻挡物", infos[j]); |
|
|
|
|
infos[j].setEnable(!show); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -684,7 +680,6 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
this.currentJYZInfoMoudleType = type; |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
console.log("隐藏", this.currentJYZInfoMoudleType); |
|
|
|
|
this.currentJYZInfoMoudleType = null; |
|
|
|
|
// SceneManager.Instance.highLightLayer.removeAllMeshes();
|
|
|
|
|
|
|
|
|
@ -733,9 +728,8 @@ export class BuildingWindow extends UIBase {
|
|
|
|
|
* @param show false 表示隐藏罩棚 |
|
|
|
|
*/ |
|
|
|
|
showZP(show: boolean) { |
|
|
|
|
console.log("展示罩棚", show) |
|
|
|
|
this.initFacilityTypeByMoudleType(JYZInfoMoudleType.ZP, this.currentBuidngItem.buildingInfo); |
|
|
|
|
let zpInfoByTypes = this.facilitysByMoudle.get(JYZInfoMoudleType.ZP); |
|
|
|
|
let zpInfoByTypes = this.zdByMoudle.get(JYZInfoMoudleType.ZP); |
|
|
|
|
if (zpInfoByTypes != null) { |
|
|
|
|
for (let i = 0; i < zpInfoByTypes.length; i++) { |
|
|
|
|
let infos = zpInfoByTypes[i].facilityInfo; |
|
|
|
|