(warning lots of wordy words)

I feel like i stink at everythign and im limited to what my low end pc can do it use to be an office pc but it got refurbished and whatnot (still low end). I usally just go to chatgpt to learn coding and youtube too but i guess thats the lazy way of the coder and i use chatgpt to code to becasue i stink at everything. i have no talent, skills or good hobbys and im dylexic and autistic but yet for some reason and im not sure why i want to make a game. I just feel very lost with things like wanting to make a game i even made a post asking what engine or framewrok i should use most said godot, python, love2d mostly but im not sure how to start its like some werid form of writters block with the fear and guilt of failing gamedev. i tried making a endless runner in godot but i coudent get the player to stand on the platform without falling thru so i raged quite and gave up… but i still have the urge to create or be creative.

  • duckythescientist@lemmy.fmhy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I’m a big fan of Python and just its standard libraries plus a couple 3rd party libraries depending on what I’m doing. Python is a great general purpose language. PyGame should be fine for basic video game stuffs, but I’d start simpler with just standard libraries.

    VS Code is probably your best choice for an IDE.

    • Domiku@beehaw.org
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      Yes - Python can be good for making a simple game like Blackjack or Tic-tac-toe or the like. It’s a great way to practice breaking down large projects into smaller manageable chunks.

      It’s how I started my programming journey. I think the first game I made was the card game War. There’s not much game complexity, but you can practice with arrays/lists, shuffling/randomizing, and conditionals.