private void OnTriggerEnter(Collider other)
    {
        ConstellationStar star = other.GetComponent <ConstellationStar>();

        if (star)
        {
            star.TryValidate(m_inputManager.GetVelocity(), transform);
        }
    }