Pygame Top Down Shooter Tutorial in Python #1 - Setup & Player Movement

Поделиться
HTML-код
  • Опубликовано: 24 дек 2024

Комментарии • 18

  • @nikosiemens9426
    @nikosiemens9426 6 месяцев назад +1

    Good job ... i made my developer exam program with your video series.. thank you very much

  • @Alpha_1_Edits
    @Alpha_1_Edits 8 месяцев назад +1

    holy crap man you're actually super helpful and good, getting me closer to making my fist game on my own so thank you

  • @dhex8122
    @dhex8122 Год назад +1

    Awesome! 👍

  • @Oxim1nus
    @Oxim1nus Год назад

    Good videos bro dont give up

  • @jaecee1528
    @jaecee1528 Год назад +1

    LOVE THE VIDEO, but I am really curious on how you made the sprites, specifically the player sprite with a gun. I have been searching everywhere on how to create those types of sprites but I have come up with nothing. Thanks in advance.

  • @informatiqueisfutur-ve2ro
    @informatiqueisfutur-ve2ro 9 месяцев назад

    thank you

  • @dima_upgrade1720
    @dima_upgrade1720 Год назад

    Cool. But why are last 2 videos hidden?

    • @JCode777
      @JCode777  Год назад

      I fixed that. All the videos so far have been uploaded. I'll try to upload the next one as soon as I can but I'm on holiday so it may be a couple weeks. Thanks :)

  • @ransom0155
    @ransom0155 Год назад

    im getting an issue where my character moves faster when i move my mouse but has horrible movement when moving without it how do i fix this?

  • @Anonymousewizard
    @Anonymousewizard Год назад +5

    cool video bro, ive been experimenting with pygame, have you seen how to import a spritesheet? funnily enough, i got 15 fps increase when i changed all my sprites to being imported from the main spritesheet; here is code.
    import pygame,
    spritesheet = pygame.image.load("art\main_spritesheet.png").convert_alpha()
    art_player = spritesheet.subsurface(pygame.Rect(x, y, width, height)) # (x,y on spritesheet, width,height of tile)
    then it just works like an imported image, eg screen.blit(art_player,(x,y))
    i think its becaue its pygame class or smth but ye 15 fps is 15 fps..

  • @nssunder
    @nssunder Год назад

    🙏

  • @kanyamuthukumar68
    @kanyamuthukumar68 8 месяцев назад

    what IDE do you use?

    • @huegui
      @huegui 7 месяцев назад

      vsc

  • @BeliefBeyondBorders
    @BeliefBeyondBorders 8 месяцев назад

    I have been getting 'Player_start_x' is not defined even though i copied everything you did

  • @ldelamat1
    @ldelamat1 Год назад +2

    DOESNT WORK

    • @langcao3544
      @langcao3544 Год назад

      You just didn't catch something, ALSO, DID U FORGET TO IMPORT THE TEXTURES IN