From b4282dfc6618575b6ed9ab640dfe2454e6b5bb6a Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 12 Nov 2025 11:59:10 +0100 Subject: [PATCH] confetti: tweak graphics --- .../apps/com.micropythonos.confetti/assets/confetti.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal_filesystem/apps/com.micropythonos.confetti/assets/confetti.py b/internal_filesystem/apps/com.micropythonos.confetti/assets/confetti.py index 3ebe15e5..47f45360 100644 --- a/internal_filesystem/apps/com.micropythonos.confetti/assets/confetti.py +++ b/internal_filesystem/apps/com.micropythonos.confetti/assets/confetti.py @@ -62,9 +62,9 @@ class Confetti(Activity): piece = { 'img_idx': idx, 'x': random.uniform(-10, self.SCREEN_WIDTH + 10), - 'y': random.uniform(50, 100), + 'y': random.uniform(50, 150), 'vx': random.uniform(-100, 100), - 'vy': random.uniform(-250, -80), + 'vy': random.uniform(-150, -80), 'spin': random.uniform(-400, 400), 'age': 0.0, 'lifetime': random.uniform(1.8, 5),