turnOffAllVideos()

private void turnOffAllVideos() {
        if (allVideos == null) return;
        foreach (GameObject videoGO in allVideos){
            videoGO.SetActive(false);
        }
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *