From 57d7b5d9f85319a5eb6b7cea1751875450f98300 Mon Sep 17 00:00:00 2001 From: Fangh Date: Sun, 28 Jan 2024 22:08:27 +0100 Subject: [PATCH] fix(imagedownloader): remove debug fonction --- Assets/Scripts/PropositionFrame.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Assets/Scripts/PropositionFrame.cs b/Assets/Scripts/PropositionFrame.cs index 42caa2f..38294fa 100644 --- a/Assets/Scripts/PropositionFrame.cs +++ b/Assets/Scripts/PropositionFrame.cs @@ -59,15 +59,4 @@ public void UpdateVoters(List _newVoters) } } } - - [ContextMenu("Debug Download image")] - private void Debug_DownloadImage() - { - StartCoroutine(DownloadImage("https://firebasestorage.googleapis.com/v0/b/ggj2024-5cb41.appspot.com/o/0278%2F63ae32b0-8371-4a7a-84a0-e1a97328fc09%2F10a5127b-12d4-48ca-b94c-1cb920a43529.png?alt=media&token=d7e53d8a-d5b4-40f9-847d-224ed2d683dc", - texture => - { - Debug.Log(texture.dimension); - })); - - } }