diff --git a/Assets/Scenes/DongYouLiQing.unity b/Assets/Scenes/DongYouLiQing.unity index 2e23b9e..db7dc61 100644 --- a/Assets/Scenes/DongYouLiQing.unity +++ b/Assets/Scenes/DongYouLiQing.unity @@ -224883,7 +224883,7 @@ PrefabInstance: - target: {fileID: 224001330236392204, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} propertyPath: m_AnchoredPosition.y - value: 0.000018335479 + value: 0.0000049613104 objectReference: {fileID: 0} - target: {fileID: 224123732978855200, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} @@ -224948,7 +224948,7 @@ PrefabInstance: - target: {fileID: 224181501778157638, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} propertyPath: m_AnchoredPosition.y - value: 0.000025032346 + value: 0.000007912276 objectReference: {fileID: 0} - target: {fileID: 224373752534357086, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} @@ -225028,7 +225028,7 @@ PrefabInstance: - target: {fileID: 224756375583235730, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} propertyPath: m_AnchoredPosition.y - value: 0.000021518692 + value: 0.000004973162 objectReference: {fileID: 0} - target: {fileID: 224796681591186844, guid: 863dfe406d9716349adc35fb55cd722c, type: 3} @@ -360336,6 +360336,10 @@ PrefabInstance: propertyPath: interlayerNum value: 1 objectReference: {fileID: 0} + - target: {fileID: 493175234, guid: 0eae1400396ce7543ada43bfc5909274, type: 3} + propertyPath: floorNum + value: 1 + objectReference: {fileID: 0} - target: {fileID: 647154048, guid: 0eae1400396ce7543ada43bfc5909274, type: 3} propertyPath: buildNum value: 2HANCC diff --git a/Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs b/Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs index 0d679b2..0e4d11a 100644 --- a/Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs +++ b/Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs @@ -220,43 +220,46 @@ public class ObjSelectCtrl : MonoBehaviour { if (info.buildNum == data.CurrentFloor.buildNum) { - if (info.floorNum > data.CurrentFloor.floorNum || - (info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum)) + if (data.CurrentFloor.floorNum!=0) { - Renderer[] renderers = SelectedObjs.selectedObj.GetComponentsInChildren(); - for (int i = 0; i < renderers.Length; i++) - { - renderers[i].enabled = false; - } - if (SelectedObjs.selectedObj.GetComponent()) //如果是被困人员/伤员,绑定了UI + if (info.floorNum > data.CurrentFloor.floorNum || + (info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum)) { - Transform ui = SelectedObjs.selectedObj.GetComponent().haemal.transform; - Image[] images = ui.GetComponentsInChildren(true); - for (int j = 0; j < images.Length; j++) + Renderer[] renderers = SelectedObjs.selectedObj.GetComponentsInChildren(); + for (int i = 0; i < renderers.Length; i++) { - images[j].enabled = false; + renderers[i].enabled = false; } - Text[] texts = ui.GetComponentsInChildren(true); - for (int j = 0; j < texts.Length; j++) + if (SelectedObjs.selectedObj.GetComponent()) //如果是被困人员/伤员,绑定了UI { - texts[j].enabled = false; + Transform ui = SelectedObjs.selectedObj.GetComponent().haemal.transform; + Image[] images = ui.GetComponentsInChildren(true); + for (int j = 0; j < images.Length; j++) + { + images[j].enabled = false; + } + Text[] texts = ui.GetComponentsInChildren(true); + for (int j = 0; j < texts.Length; j++) + { + texts[j].enabled = false; + } } - } - if (SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.fireman || - SelectedObjs.selectedObj.GetComponent()|| - - SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.Trailer || - SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.OilSupplyTruck || - SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.LiquipSupplyTruck || - SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.RescueCarrierCar || - SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.LifeGuaranteeCar) - { - UINameItem[] names = GameObject.Find("Canvas").transform.Find("TheHeadName").GetComponentsInChildren(true); - for (int j = 0; j < names.Length; j++) + if (SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.fireman || + SelectedObjs.selectedObj.GetComponent() || + + SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.Trailer || + SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.OilSupplyTruck || + SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.LiquipSupplyTruck || + SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.RescueCarrierCar || + SelectedObjs.selectedObj.GetComponent().gameObjType == CloneObjType.LifeGuaranteeCar) { - if (names[j].Target == SelectedObjs.selectedObj.gameObject) + UINameItem[] names = GameObject.Find("Canvas").transform.Find("TheHeadName").GetComponentsInChildren(true); + for (int j = 0; j < names.Length; j++) { - names[j].gameObject.SetActive(false); + if (names[j].Target == SelectedObjs.selectedObj.gameObject) + { + names[j].gameObject.SetActive(false); + } } } } @@ -276,22 +279,26 @@ public class ObjSelectCtrl : MonoBehaviour { if (info.buildNum == data.CurrentFloor.buildNum) { - if (info.floorNum > data.CurrentFloor.floorNum || - (info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum)) + if (data.CurrentFloor.floorNum!=0) { - Renderer[] renderers = SelectedObjs.selectedCharacters[i].GetComponentsInChildren(); - for (int j = 0; j < renderers.Length; j++) + if (info.floorNum > data.CurrentFloor.floorNum || + (info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum)) { - renderers[j].enabled = false; - } - for (int j = 0; j < names.Length; j++) - { - if (names[j].Target == SelectedObjs.selectedCharacters[i]) + Renderer[] renderers = SelectedObjs.selectedCharacters[i].GetComponentsInChildren(); + for (int j = 0; j < renderers.Length; j++) + { + renderers[j].enabled = false; + } + for (int j = 0; j < names.Length; j++) { - names[j].gameObject.SetActive(false); + if (names[j].Target == SelectedObjs.selectedCharacters[i]) + { + names[j].gameObject.SetActive(false); + } } } } + } } }