private IEnumerator LateStart()
    {
        loading.SetActive(true);
        yield return(new WaitForSeconds(0.2f));

        floorManager.GenerateRooms(levels.levels[currentLevelIndex].floors[currentFloorIndex]);
        yield return(new WaitForSeconds(1f));

        loading.SetActive(false);
    }