void Update()
    {
        if (measurablePoint.state == MeasurablePoint.PointState.END)
        {
            ImageGO.SetActive(false);
        }
        else
        {
            ImageGO.SetActive(true);
            transform.position = measurablePoint.GetMidPoint();
            transform.LookAt(CameraHandler.position);
        }
        if (UnitsToggleController.unit == UnitsToggleController.Units.IMPERIAL)
        {
            SetTextImperial();
        }
        else
        {
            SetTextMetric();
        }

        if (measurablePoint.state == MeasurablePoint.PointState.ACTIVE)
        {
            CurrentLineLengthUIController.isActive          = true;
            CurrentLineLengthUIController.currentLengthText = text.text;
        }
    }