diff --git a/Assets/Scripts/ANet/DeviceFollowTarget.cs b/Assets/Scripts/ANet/DeviceFollowTarget.cs index beaf7c0..db56483 100644 --- a/Assets/Scripts/ANet/DeviceFollowTarget.cs +++ b/Assets/Scripts/ANet/DeviceFollowTarget.cs @@ -43,7 +43,7 @@ public class DeviceFollowTarget : MonoBehaviour { if (GetComponent()) { - DestroyImmediate(GetComponent()); + Destroy(GetComponent()); } } private void LateUpdate() @@ -57,7 +57,7 @@ public class DeviceFollowTarget : MonoBehaviour { if (target && DevicePanelManager.Instance.NowClickObject != target.GetComponent()) { - DestroyImmediate(GetComponent()); + Destroy(GetComponent()); } } } diff --git a/Assets/Scripts/ANet/DeviceItem.cs b/Assets/Scripts/ANet/DeviceItem.cs index ae09c0d..e98613b 100644 --- a/Assets/Scripts/ANet/DeviceItem.cs +++ b/Assets/Scripts/ANet/DeviceItem.cs @@ -56,6 +56,14 @@ public class DeviceItem : MonoBehaviour { obj.GetComponent().ShowList(); } + else + { + DevicePanelManager.Instance.NowClickObject = null; + } + } + else + { + DevicePanelManager.Instance.NowClickObject = null; } } diff --git a/Assets/Scripts/ANet/DeviceObj.cs b/Assets/Scripts/ANet/DeviceObj.cs index 955d5b3..026714e 100644 --- a/Assets/Scripts/ANet/DeviceObj.cs +++ b/Assets/Scripts/ANet/DeviceObj.cs @@ -74,7 +74,7 @@ public class DeviceObj : MonoBehaviour { if (DevicePanelManager.Instance.NowClickObject != this) { - DestroyImmediate(GetComponent()); + Destroy(GetComponent()); } } //if (BindType == DevicePanelManager.Instance.MenuType) diff --git a/Assets/Scripts/ANet/DeviceObjManager.cs b/Assets/Scripts/ANet/DeviceObjManager.cs index 00e2ef4..1060b25 100644 --- a/Assets/Scripts/ANet/DeviceObjManager.cs +++ b/Assets/Scripts/ANet/DeviceObjManager.cs @@ -93,6 +93,7 @@ public class DeviceObjManager : MonoBehaviour { data.postion = obj.postion; data.type = obj.type; + has = true; } } if (!has) @@ -159,8 +160,8 @@ public class DeviceObjManager : MonoBehaviour foreach (var item in NowPointList) { GameObject go = Instantiate(Point, item.postion, Quaternion.identity, transform); - go.GetComponent().CreateIcon(item.type, item.floorId); go.name = item.name; + go.GetComponent().CreateIcon(item.type, item.floorId); SelectionManager.Instance.Sets.Add(go); } });