Browse Source

闪烁脚本隐藏时候立即销毁报错修复

develop
杨栋梁 12 months ago
parent
commit
3f4b766f5d
  1. 4
      Assets/Scripts/ANet/DeviceFollowTarget.cs
  2. 8
      Assets/Scripts/ANet/DeviceItem.cs
  3. 2
      Assets/Scripts/ANet/DeviceObj.cs
  4. 3
      Assets/Scripts/ANet/DeviceObjManager.cs

4
Assets/Scripts/ANet/DeviceFollowTarget.cs

@ -43,7 +43,7 @@ public class DeviceFollowTarget : MonoBehaviour
{
if (GetComponent<DeviceLumos>())
{
DestroyImmediate(GetComponent<DeviceLumos>());
Destroy(GetComponent<DeviceLumos>());
}
}
private void LateUpdate()
@ -57,7 +57,7 @@ public class DeviceFollowTarget : MonoBehaviour
{
if (target && DevicePanelManager.Instance.NowClickObject != target.GetComponent<DeviceObj>())
{
DestroyImmediate(GetComponent<DeviceLumos>());
Destroy(GetComponent<DeviceLumos>());
}
}
}

8
Assets/Scripts/ANet/DeviceItem.cs

@ -56,6 +56,14 @@ public class DeviceItem : MonoBehaviour
{
obj.GetComponent<DeviceObj>().ShowList();
}
else
{
DevicePanelManager.Instance.NowClickObject = null;
}
}
else
{
DevicePanelManager.Instance.NowClickObject = null;
}
}

2
Assets/Scripts/ANet/DeviceObj.cs

@ -74,7 +74,7 @@ public class DeviceObj : MonoBehaviour
{
if (DevicePanelManager.Instance.NowClickObject != this)
{
DestroyImmediate(GetComponent<DeviceLumos>());
Destroy(GetComponent<DeviceLumos>());
}
}
//if (BindType == DevicePanelManager.Instance.MenuType)

3
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<DeviceObj>().CreateIcon(item.type, item.floorId);
go.name = item.name;
go.GetComponent<DeviceObj>().CreateIcon(item.type, item.floorId);
SelectionManager.Instance.Sets.Add(go);
}
});

Loading…
Cancel
Save