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