Videogame in progress 10/01/202230/01/2022pythonprogramming Now the coin moves around (27.1.2022) Now the tiles does not stop him when he jumps. Changed some sounds. Last video update 23.1.2022 [...]
Taichi for Python: how to visualize Mathematical algorithms – Graphic programming 06/01/202206/01/2022pythonprogramming This is interesting. https://docs.taichi.graphics/ How to install it pip install taichi This is an example This is the output [...]
How to scroll the map in a 2d game with Pygame 06/01/202206/01/2022pythonprogramming I get this code from https://gamedev.stackexchange.com/questions/117678/how-to-figure-out-which-tiles-are-within-view-and-where-to-draw-them-in-the-gri And I think it can be interesting for the people that wants to learn pygame. Video [...]
How to Randomly generate a platform with Pygame 05/01/202206/01/2022pythonprogramming This game was made with the code of DaFluffyPotato. I made some changes that you can see here. Go The code is here. [...]
Pythonista day 6 – how to collect coins in the map 03/01/202203/01/2022pythonprogramming The new methods player_pos (convert position of the player to the row and col of the map list to check if there’s a [...]
Pygame day 9 – making new AI for the enemy and adding images to player 02/01/202202/01/2022pythonprogramming let’s refinish a little our rough ai movement of the enemy [...]
Pygame day 8: how to make a bullet sprite 02/01/202202/01/2022pythonprogramming pygame day 8 making bullets [...]
Pygame day 7 – how to use images, fps and movements 01/01/202201/01/2022pythonprogramming This time we are going to use images for our sprites, add fps to the screen redefine classes for player and enemy redo [...]
Pygame day 6 – Enemy AI 2 01/01/202201/01/2022pythonprogramming Some try to make a more ‘intelligent’ ai for the enemy that now goes as far as he can from the player, but [...]
How to see how many FPS there are in pygame 30/12/202130/12/2021pythonprogramming This scripts shows you how many sprites you can handle with pygame. Video [...]