private void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.name == "LapEnd")
        {
            lapManager.LapEndPassed();
        }

        if (other.gameObject.name == "LapStart")
        {
            lapManager.LapStartPassed();
        }
    }