FinFET
FinFET
  • Видео 84
  • Просмотров 630 779
Parallaxcraft: 2.5D Minecraft clone made with Pygame
Hello guys!
Starting the year with an explainer video about my 2.5D clone of Minecraft.
Try it here: finfetchannel.itch.io/parallaxcraft
My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto
My games on itch: finfetchannel.itch.io/
My website: finfetchannel.github.io/
My GitHub: github.com/FinFetChannel
Просмотров: 233

Видео

2.5D Minecraft using Parallax and scaled layers - Pygame Python
Просмотров 8603 месяца назад
Hello guys! Have been working on this Minecraft remake using parallax and scaled layers. The depth effect looks cool but the camera always points in the same direction. All made with pygame ce and Python. My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto My games on itch: finfetchannel.itch.io/ My website: finfetchannel.github.io/ My GitHub: github.com/FinFetC...
How to convert Pygame Games for the Web with Pygbag - Python Gamedev
Просмотров 1,4 тыс.4 месяца назад
Hello guys! In this video, I revisit older Python and Pygame projects to convert them for web compatibility using the Pygbag library. I walk through the steps of adapting different projects, from a basic audio synthesizer to a raycasting game, covering key modifications and handling common issues. Pygbag docs: pygame-web.github.io/ Try Dead End's web version on itch: itch.io/game/edit/1326223 S...
(Fake) 3D Racing Game in Pygame - Python Gamedev Tutorial
Просмотров 2,3 тыс.4 месяца назад
Hello guys! In this video, I'll show you how to create a pseudo-3D racing game effect, replicating the classic look of old-school racing games. We'll cover how to generate a seamless road texture, add movement, simulate curves, and introduce a sense of depth and perspective. You'll also learn how to implement basic car controls and add 2D sprites for other cars and objects like trees and houses...
Smooth and Cool - Nico Staf - Pygame Racing Game? - proof of concept - Synth wave
Просмотров 5475 месяцев назад
Hello guys! This is just a test for a new project, inspired by the old time racing games, reminded me of some synth wave animations... Music: Smooth and Cool - Nico Staf My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto My games on itch: finfetchannel.itch.io/ My website: finfetchannel.github.io/ My GitHub: github.com/FinFetChannel
Why use Pygame instead of a Game Engine? Gamedev Python
Просмотров 4,6 тыс.5 месяцев назад
Let's take a look at Pygame's strengths, explore some reasons why you might choose Pygame to develop your dream game, unleash your creativity, and sharpen your programming skills, instead of using more traditional and established game engines like Unreal Engine, Unity, or Godot. Inspired by Mike's videos on @gamefromscratch Why use Godot: ruclips.net/video/pATpV7MwZr8/видео.html Why use Unreal:...
Pseudo 3D techniques - 2.5D Graphics - Fake 3D - Gamedev Pygame Python
Просмотров 5 тыс.6 месяцев назад
Topics: Isometric projection Sprite stacking Z scaling or sprite scaling Raycasting Floorcasting or mode 7 Heightmaps Pre rendered backgrounds The projects I used as example on this video: Isometria by @bigwhoopgames : ruclips.net/video/5rfL3drmEGE/видео.html Sprite stacking by @DaFluffyPotato : ruclips.net/video/FNw_BQok14A/видео.html Z scaling by me: ruclips.net/video/kyI-Ken7aAk/видео.html R...
🚀 3 easy tricks to get better performance with Pygame - Python Gamedev
Просмотров 1,7 тыс.6 месяцев назад
You can play the game here: finfetchannel.itch.io/brackeys-godot-game-on-pygame My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto My games on itch: finfetchannel.itch.io/ My website: finfetchannel.github.io/ My GitHub: github.com/FinFetChannel
A simple hack to have less stutter and physics bugs | Python Pygame Gamedev
Просмотров 6386 месяцев назад
A simple hack to make your games run smoother, regardless of the frame rate! Discover how to handle physics and collisions more effectively, ensuring your game performs well even on lower-end PCs. Demo on itch: finfetchannel.itch.io/collision My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto My games on itch: finfetchannel.itch.io/ My website: finfetchannel.gi...
Remaking Brackeys Godot game in Pygame - Python
Просмотров 7567 месяцев назад
Hi guys! I'm slowly getting back to my Python and Pygame projects. As a warm-up I decided to recreate the game that Brackeys made in Godot. My games on the Play store: play.google.com/store/apps/details?id=org.finfet.dddauto My games on itch: finfetchannel.itch.io/ My website: finfetchannel.github.io/ My GitHub: github.com/FinFetChannel
Python PyGame to Android App: How to make .apk and .aab files with Buildozer Full Tutorial
Просмотров 42 тыс.Год назад
A tutorial about the process of turning a PyGame Game into an Android App using Buildozer in a virtual machine Install buildozer: buildozer.readthedocs.io/en/latest/installation.html Signing .aab: dzungvu.medium.com/build-aab-file-and-sign-key-later-b69adb1a5e6 Code for the sample project: import pygame, random, os PATH = os.path.abspath('.') '/' pygame.init() screen = pygame.display.set_mode((...
A Racing Game for Learning German Articles and Genders: DerDieDas Auto - Python Pygame Devlog
Просмотров 1,4 тыс.Год назад
DerDieDas Auto: A racing game for training the genders (and articles) of German substantives. Made in Python with pygame and pygbag (plays directly in the browser). You can play it here: finfetchannel.itch.io/derdiedas-auto finfetchannel.github.io/
Creating a Static Webpage in Python with Yattag - Generate HTML code
Просмотров 1,7 тыс.Год назад
The page I created: finfetchannel.github.io/ GitHub: github.com/FinFetChannel/FinFetChannel.github.io The Yattag project: www.yattag.org/ Yattag is a lightweight Python library that provides an easy way to generate HTML/XML documents. With Yattag, you can create static webpages with ease, without the need for any complicated frameworks or tools.
First Person Perspective Super Mario Bros. in Python Pygame with Raycasting
Просмотров 2,4 тыс.Год назад
First Person Perspective Super Mario Bros. in Python Pygame with Raycasting
The first steps in Python with AI: ChatGPT OpenAI - Concepts, Installation, Syntax, Libraries
Просмотров 1,3 тыс.2 года назад
The first steps in Python with AI: ChatGPT OpenAI - Concepts, Installation, Syntax, Libraries
Running PyGame in the web browser with Pygbag! mini Python tutorial Wasm WebAssembly
Просмотров 37 тыс.2 года назад
Running PyGame in the web browser with Pygbag! mini Python tutorial Wasm WebAssembly
Collaborate with AI in Dead And! - neural network for the player - Wowie 4.0 Game Jam devlog
Просмотров 1,2 тыс.2 года назад
Collaborate with AI in Dead And! - neural network for the player - Wowie 4.0 Game Jam devlog
Complete Raycasting Game Project in Python: Dead And! - RPG FPS Full course with code on github
Просмотров 6 тыс.2 года назад
Complete Raycasting Game Project in Python: Dead And! - RPG FPS Full course with code on github
The FinFET
Просмотров 2,7 тыс.2 года назад
The FinFET
Weights, Biases and Forward Pass: re implementing a neural network from Scikit-Learn - Python
Просмотров 1 тыс.2 года назад
Weights, Biases and Forward Pass: re implementing a neural network from Scikit-Learn - Python
Using a neural network as AI in my game in Python - a warm up
Просмотров 4,1 тыс.2 года назад
Using a neural network as AI in my game in Python - a warm up
[0003] The LockPickin'joyer from Python PyGame to Unity: WebGL and Android DevLog
Просмотров 9472 года назад
[0003] The LockPickin'joyer from Python PyGame to Unity: WebGL and Android DevLog
[0001] Lock Picking Enjoyer early demo gameplay
Просмотров 7572 года назад
[0001] Lock Picking Enjoyer early demo gameplay
Basic Dynamic Shadow Mapping on my 3D graphics engine made in Python with Pygame
Просмотров 2 тыс.2 года назад
Basic Dynamic Shadow Mapping on my 3D graphics engine made in Python with Pygame
Making a 3D graphics engine in Python (again) with proper projection and texturing, obj models
Просмотров 9 тыс.2 года назад
Making a 3D graphics engine in Python (again) with proper projection and texturing, obj models
Rendering textured triangles - Python Pygame 3D software renderer graphics engine devlog tutorial
Просмотров 3 тыс.2 года назад
Rendering textured triangles - Python Pygame 3D software renderer graphics engine devlog tutorial
Making a simple 3D graphics engine in Python PyGame, software renderer - devlog tutorial
Просмотров 25 тыс.2 года назад
Making a simple 3D graphics engine in Python PyGame, software renderer - devlog tutorial
Modding Dead And! into a first person shooter - Python Pygame 3D raycasting game devlog tutorial FPS
Просмотров 3,6 тыс.3 года назад
Modding Dead And! into a first person shooter - Python Pygame 3D raycasting game devlog tutorial FPS
Dead And! Official trailer - 3d Raycasting game in Python Pygame
Просмотров 2,4 тыс.3 года назад
Dead And! Official trailer - 3d Raycasting game in Python Pygame
Simple level design on my raycasting game in Python Pygame: Dead And! devlog tutorial
Просмотров 1,3 тыс.3 года назад
Simple level design on my raycasting game in Python Pygame: Dead And! devlog tutorial

Комментарии

  • @kajsija
    @kajsija 4 дня назад

    Hi, do you have a discord channel? This is beyond amazing, and you even published it online and provided a source code...

    • @FinFET
      @FinFET 3 дня назад

      I had one a while ago, but I deleted it because i didn't had the time to manage it and interact. Sometimes I hang out on the Pygame-ce discord

  • @bigwhoopgames
    @bigwhoopgames 4 дня назад

    Awesome work!

  • @famaral42
    @famaral42 5 дней назад

    Thx for the tutorial, valeu!

  • @famaral42
    @famaral42 5 дней назад

    Man... could you please make tutorial how to export to Android? muito agradecido ;)

    • @FinFET
      @FinFET 4 дня назад

      Have you seen this one? ruclips.net/video/L6XOqakZOeA/видео.html

  • @SkyFly19853
    @SkyFly19853 5 дней назад

    I am developing a Civ like videogame... but nobody wanted to be a pixel artist fir this project... so, I decided to become one. Learning how to create a pixel tile right now.

  • @akramanimation1612
    @akramanimation1612 5 дней назад

    Love it❤❤❤

  • @thattvguy2324
    @thattvguy2324 7 дней назад

    i wanted to see how to make 3d games in pygame and maybe try. Now i want to stop programing

  • @hazretimendel1158
    @hazretimendel1158 8 дней назад

    are you looking for a team ? we can do some projects

  • @Steam30102
    @Steam30102 18 дней назад

    А кто то пробовал интегрировать sdk? У меня не получается

  • @homepc1519
    @homepc1519 23 дня назад

    can I get the python code?

  • @pedrotangerina9599
    @pedrotangerina9599 24 дня назад

    Boa tarde, gostaria de saber se é possivel voce disponibilizar o código que vc utilizou. Tambem estou com algumas dúvidas teria algum endereço de email para melhorar a comunicação?

  • @JsoProductionChannel
    @JsoProductionChannel 25 дней назад

    Can I use gspread package in my python program and still convert it to an app?

  • @LenoTheDuper0
    @LenoTheDuper0 27 дней назад

    Thats an interesting project ! I want you to make the tutorial easier if pussible cuz it will help coders like me a lot.

  • @alexdemeter1558
    @alexdemeter1558 Месяц назад

    Could you maybe make a vidoe doing this with ursina

  • @robertjohansson6027
    @robertjohansson6027 Месяц назад

    I'm trying to host it myself in cherrypy. I can't get it to work without it redirecting to localhost, which is not accessible from my website. Have you tried hosting it in another server or have any ideas on how to do it?

  • @MadCubeAnimation-so4hf
    @MadCubeAnimation-so4hf Месяц назад

    What the hell this is made in pygame how it can even possible i like your project very much

  • @DirectorFitzgerald
    @DirectorFitzgerald Месяц назад

    it works?😊

  • @Power_Familyx6
    @Power_Familyx6 Месяц назад

    Hey is it possible to get the code for this I couldn’t find it in your GitHub. Thanks.

  • @corkgp
    @corkgp Месяц назад

    this is actually insane. had problems with rtx voice especially when it crashes all of a sudden or the noise cancellation cuts out. this software + plugin combo does wonders compared to rtx voice.

  • @blacklamak
    @blacklamak Месяц назад

    Its really amazing this was done on pygame

  • @Bobbyonhat
    @Bobbyonhat Месяц назад

    Error occurred: Cannot read properties of undefined (reading 'statSync')

  • @paliostudio
    @paliostudio Месяц назад

    Manw, consigo executwr qualquer jogo feito em python nesse esquema?

    • @famaral42
      @famaral42 5 дней назад

      Querendo saber tambem...

    • @FinFET
      @FinFET 4 дня назад

      Depende um pouco das bibliotecas que você usa, mas a grande maioria eu diria que sim, só que dependendo da complexidade do projeto fica mais difícil a conversao

  • @dgofficial-r5f
    @dgofficial-r5f Месяц назад

    Oh wow!

  • @SalGtagVR
    @SalGtagVR Месяц назад

    It doesn't work and I can't import pygame and I can't get anything to work

  • @Swaggycarrot11
    @Swaggycarrot11 2 месяца назад

    Are we ever going to get a release?

  • @blade8147
    @blade8147 2 месяца назад

    Hey, amazing project! I am interested in making something similar in c++ for the nds. Would it be possible to have the code you made for this available online? I can't seem to find it in your Github, it would be great help for my project. Thanks! edit: nvm i found them, i didnt see your comment :P

  • @RpgCoffee
    @RpgCoffee 2 месяца назад

    3:33 Hello, I really couldn't understand this part, I managed to create maps with pseudo 3d like mode7 and raycast but I still can't understand how to make the sprites appear in the room and maintain the scale. I'm doing it with Canvas and pure javascript, could you help me?

  • @gabrielmelo2472
    @gabrielmelo2472 3 месяца назад

    excellent tutorial man!!! can make this like a loop map ? with laps and that thinks?

  • @aligunaydn9912
    @aligunaydn9912 3 месяца назад

    I am also coding pygame. Would you like to develop a game together?

  • @aligunaydn9912
    @aligunaydn9912 3 месяца назад

    this great

  • @BellPer889
    @BellPer889 3 месяца назад

    Wtf man

  • @BellPer889
    @BellPer889 3 месяца назад

    HOW??? HOW?????????

  • @LeoOno
    @LeoOno 3 месяца назад

    excelente!!!

  • @madisyn6745
    @madisyn6745 3 месяца назад

    thank you for the easy to follow video! just one thing that keeps driving my OCD crazy... it's fourty four thousand one hundredd (44100), not fourty one thousand! but that's just me being nitpicky..... so, great video!

  • @breakdanc3383
    @breakdanc3383 3 месяца назад

    thanks so much!

  • @Eeuwa_
    @Eeuwa_ 3 месяца назад

    didnt work, very sad :c

  • @plrc4593
    @plrc4593 3 месяца назад

    It's amazing, man. Didn't believe it's possible in pygame. What resolution it is?

  • @ITPro-ym7cq
    @ITPro-ym7cq 3 месяца назад

    Hello, could you give me the source code of this game

  • @LeoOno
    @LeoOno 3 месяца назад

    cara ficou show de bola! acho que nunca vi nada parecido! muito criativo mesmo, quantos layers você usou neste exemplo?

    • @FinFET
      @FinFET 3 месяца назад

      Valeu! acho que eu habilitei 50 layers visiveis, sendo dois translúcidos entre o jogador e a camera, e o mapa tem 100x100x64 blocos

    • @LeoOno
      @LeoOno 3 месяца назад

      ​@@FinFET muito bom! obrigado pelas info

  • @biner01
    @biner01 3 месяца назад

    very kool!

  • @hellothere-dc4ju
    @hellothere-dc4ju 3 месяца назад

    better than the minecraft movie lol

  • @hellothere-dc4ju
    @hellothere-dc4ju 3 месяца назад

    ohgodcraft

  • @RoboMarchello
    @RoboMarchello 3 месяца назад

    I haven't seen anything like this before, looks very cool!

  • @ThomasEdwards-m4y
    @ThomasEdwards-m4y 3 месяца назад

    What technology did you use to distribute a Python app to the Google Play store?

    • @FinFET
      @FinFET 3 месяца назад

      Buildozer on Linux on a VM, I've made a video about it

  • @Wasabialt
    @Wasabialt 3 месяца назад

    Awesome

  • @pineapplefantastico3079
    @pineapplefantastico3079 3 месяца назад

    Wait this is cool as fuck, I’d love to see someone do a full game like this. Alternatively, love to know how it was done if I ever ended up making a game, which is unlikely anytime soon given a lack of education in that field.

  • @Hawkathone
    @Hawkathone 3 месяца назад

    Lol he looks like Jack Black. He… is Steve.

  • @x312_edum21
    @x312_edum21 3 месяца назад

    WHAT? that looks so cool wth

  • @mega-nerd
    @mega-nerd 3 месяца назад

    Neat, looks like you could cache the other cardinal perspectives with ease too?

    • @FinFET
      @FinFET 3 месяца назад

      @@mega-nerd yes, it's tile based with many pre rendered layers, just need to re render them in the other direction

  • @SkyFly19853
    @SkyFly19853 3 месяца назад

    oh... very interesting...