Browse Source

修改esc取消选中,当前没有切楼层,物体隐藏的问题

develop
曹衍涛 3 years ago
parent
commit
60bd251af0
  1. 10
      Assets/Scenes/DongYouLiQing.unity
  2. 9
      Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs

10
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

9
Assets/Scripts/Common/GameObjectSelect/ObjSelectCtrl.cs

@ -219,6 +219,8 @@ public class ObjSelectCtrl : MonoBehaviour
if (info && data)
{
if (info.buildNum == data.CurrentFloor.buildNum)
{
if (data.CurrentFloor.floorNum!=0)
{
if (info.floorNum > data.CurrentFloor.floorNum ||
(info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum))
@ -243,7 +245,7 @@ public class ObjSelectCtrl : MonoBehaviour
}
}
if (SelectedObjs.selectedObj.GetComponent<CloneGameObjInfo>().gameObjType == CloneObjType.fireman ||
SelectedObjs.selectedObj.GetComponent<TruckMessage>()||
SelectedObjs.selectedObj.GetComponent<TruckMessage>() ||
SelectedObjs.selectedObj.GetComponent<CloneGameObjInfo>().gameObjType == CloneObjType.Trailer ||
SelectedObjs.selectedObj.GetComponent<CloneGameObjInfo>().gameObjType == CloneObjType.OilSupplyTruck ||
@ -264,6 +266,7 @@ public class ObjSelectCtrl : MonoBehaviour
}
}
}
}
if (SelectedObjs.selectedCharacters.Count > 0 )
{
FloorsPanelManager data = GameObject.Find("Canvas").transform.GetComponentInChildren<FloorsPanelManager>(false);
@ -275,6 +278,8 @@ public class ObjSelectCtrl : MonoBehaviour
if (info && data)
{
if (info.buildNum == data.CurrentFloor.buildNum)
{
if (data.CurrentFloor.floorNum!=0)
{
if (info.floorNum > data.CurrentFloor.floorNum ||
(info.floorNum == data.CurrentFloor.floorNum && info.interlayerNum > data.CurrentFloor.interlayerNum))
@ -293,6 +298,8 @@ public class ObjSelectCtrl : MonoBehaviour
}
}
}
}
}
}

Loading…
Cancel
Save