chore: clean up

This commit is contained in:
2025-05-17 15:16:30 +02:00
parent 0e70858ce9
commit b48e17882c
17 changed files with 147 additions and 30 deletions

View File

@ -50,7 +50,6 @@ public class StarsRenderer : MonoBehaviour
{
useManualMode = true;
manualDifficulty = Mathf.Clamp(difficulty, 1, 5);
Debug.Log($"[StarsRenderer] SetManualDifficulty → manualDifficulty = {manualDifficulty}");
lastRenderedDifficulty = -1;
RenderStarsInternal(manualDifficulty);
}
@ -74,7 +73,6 @@ public class StarsRenderer : MonoBehaviour
private void RenderStarsInternal(int difficulty)
{
Debug.Log($"[StarsRenderer] RenderStarsInternal → difficulté = {difficulty}", this);
for (int i = starsContainer.childCount - 1; i >= 0; i--)
{
var child = starsContainer.GetChild(i);