+ 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
13 Antworten
+ 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.
+ 1
Ok
+ 1
Once a programmer always a programmer
0
Stella5555, do send your code or specify the problem, so that we can tweak our code snippets or tips to suit your needs.
0
I want to learn python
0
Help me
0
Muhmdrifan , please specify your question. We're here to help.
0
Thank you so much
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..
0
it could be better if you use kivy framework with python.. i built a 2D game using it
0
Thanks a lot
0
I'm confused
0
What problem