Example #1
0
    private void StopAutoZoom()
    {
        if (autoZoomCoroutine != null)
        {
            StopCoroutine(autoZoomCoroutine);
            autoZoomCoroutine = null;
        }

        if (currentSelectionHandler != null)
        {
            currentSelectionHandler.Stop();
            currentSelectionHandler = null;
        }
    }