Browse Source

闪烁脚本因物体隐藏不移除效果修改

develop
杨栋梁 12 months ago
parent
commit
c9786484cc
  1. 12
      Assets/Scripts/ANet/DeviceFollowTarget.cs
  2. 4
      Assets/Scripts/ANet/DeviceLumos.cs
  3. 6
      Assets/Scripts/ANet/DeviceObj.cs
  4. 2
      Assets/Scripts/Lumos.cs

12
Assets/Scripts/ANet/DeviceFollowTarget.cs

@ -19,8 +19,6 @@ public class DeviceFollowTarget : MonoBehaviour
} }
public void ViewClick() public void ViewClick()
{ {
MessageDispatcher.SendMessage("FLOORNUMBER", target.GetComponent<DeviceObj>().floorId, "Floor");
Camera.main.GetComponent<CameraOrbit>().SetCameraView(target.position, 15); Camera.main.GetComponent<CameraOrbit>().SetCameraView(target.position, 15);
if (target && target.GetComponent<DeviceObj>()) if (target && target.GetComponent<DeviceObj>())
{ {
@ -41,7 +39,13 @@ public class DeviceFollowTarget : MonoBehaviour
RectTransformUtility.ScreenPointToLocalPointInRectangle(transform.parent.GetComponent<RectTransform>(), world2ScreenPos, uiCamera, out uiPos); RectTransformUtility.ScreenPointToLocalPointInRectangle(transform.parent.GetComponent<RectTransform>(), world2ScreenPos, uiCamera, out uiPos);
return uiPos; return uiPos;
} }
private void OnDisable()
{
if (GetComponent<DeviceLumos>())
{
DestroyImmediate(GetComponent<DeviceLumos>());
}
}
private void LateUpdate() private void LateUpdate()
{ {
if (gameObject.activeSelf && target) if (gameObject.activeSelf && target)
@ -53,7 +57,7 @@ public class DeviceFollowTarget : MonoBehaviour
{ {
if (target && DevicePanelManager.Instance.NowClickObject != target.GetComponent<DeviceObj>()) if (target && DevicePanelManager.Instance.NowClickObject != target.GetComponent<DeviceObj>())
{ {
Destroy(GetComponent<DeviceLumos>()); DestroyImmediate(GetComponent<DeviceLumos>());
} }
} }
} }

4
Assets/Scripts/ANet/DeviceLumos.cs

@ -9,7 +9,7 @@ public class DeviceLumos : MonoBehaviour
private float time; private float time;
private bool LumosReady; private bool LumosReady;
public float Interval = 0.3f; private float Interval = 0.5f;
private void Awake() private void Awake()
{ {
@ -21,7 +21,7 @@ public class DeviceLumos : MonoBehaviour
else if (GetComponent<Image>()) else if (GetComponent<Image>())
{ {
NormalColor = GetComponent<Image>().color; NormalColor = GetComponent<Image>().color;
TargetColor = Color.green; TargetColor = Color.blue;
} }
} }
private void LateUpdate() private void LateUpdate()

6
Assets/Scripts/ANet/DeviceObj.cs

@ -74,7 +74,7 @@ public class DeviceObj : MonoBehaviour
{ {
if (DevicePanelManager.Instance.NowClickObject != this) if (DevicePanelManager.Instance.NowClickObject != this)
{ {
Destroy(GetComponent<DeviceLumos>()); DestroyImmediate(GetComponent<DeviceLumos>());
} }
} }
//if (BindType == DevicePanelManager.Instance.MenuType) //if (BindType == DevicePanelManager.Instance.MenuType)
@ -102,6 +102,10 @@ public class DeviceObj : MonoBehaviour
{ {
tIconObj.GetComponent<DeviceFollowTarget>().ViewClick(); tIconObj.GetComponent<DeviceFollowTarget>().ViewClick();
} }
else
{
DevicePanelManager.Instance.NowClickObject = null;
}
} }
public void CreateIcon(DeviceType type, int floorId) public void CreateIcon(DeviceType type, int floorId)
{ {

2
Assets/Scripts/Lumos.cs

@ -1,4 +1,4 @@
using UnityEngine; using UnityEngine;
using UniRx; using UniRx;
public class Lumos : MonoBehaviour public class Lumos : MonoBehaviour
{ {

Loading…
Cancel
Save