+ 3

Someone help with this problem

I tried animate sprites with python, but, i failed, someone can help. Send me a code, tip or something please. I will be very grateful for you

1st Apr 2025, 8:49 PM
Stella5555
Stella5555 - avatar
10 Answers
+ 6
Stella5555 if you are trying to do this on sololearn I really have yet to see anyone successfully achieve. Javascript on the other hand I've seen quite a few.
1st Apr 2025, 9:17 PM
BroFar
BroFar - avatar
+ 1
Ok
2nd Apr 2025, 12:14 AM
Stella5555
Stella5555 - avatar
+ 1
Once a programmer always a programmer
3rd Apr 2025, 12:21 AM
Bugs🐞
Bugs🐞 - avatar
0
Stella5555, do send your code or specify the problem, so that we can tweak our code snippets or tips to suit your needs.
2nd Apr 2025, 12:06 AM
Ushasi Bhattacharya
0
I want to learn python
2nd Apr 2025, 3:15 PM
Kummari Anjaneyulu
Kummari Anjaneyulu - avatar
0
Help me
3rd Apr 2025, 9:18 AM
Muhmdrifan
Muhmdrifan - avatar
0
Muhmdrifan , please specify your question. We're here to help.
3rd Apr 2025, 9:55 AM
Ushasi Bhattacharya
0
Thank you so much
3rd Apr 2025, 11:54 AM
Muhmdrifan
Muhmdrifan - avatar
0
import pygame import sys pygame.init() WIDTH, HEIGHT = 800, 1200 screen = pygame.display.set_mode((WIDTH, HEIGHT)) pygame.display.set_caption("Sprite Animation Example") sprite_sheet = pygame.image.load('sprite_sheet.png') SPRITE_WIDTH = 80 SPRITE_HEIGHT = 400 frames = [] for i in range(4): frame = sprite_sheet.subsurface((i * SPRITE_WIDTH, 0, SPRITE_WIDTH, SPRITE_HEIGHT)) frames.append(frame) x, y = WIDTH // 3, HEIGHT // 10 frame_index = 0 clock = pygame.time.Clock() while True: screen.fill((255, 255, 255)) for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() sys.exit() screen.blit(frames[frame_index], (x, y)) frame_index = (frame_index + 1) % len(frames) pygame.display.flip() clock.tick(10) Here we go again..... I was making a game like flappybird .. you need pygame module installed in your environment .. are you too trying to make a game using python well I was doing it too but I gave up..
3rd Apr 2025, 7:35 PM
Abhishek Chougule
Abhishek Chougule - avatar
0
it could be better if you use kivy framework with python.. i built a 2D game using it
3rd Apr 2025, 7:37 PM
Abhishek Chougule
Abhishek Chougule - avatar