Creating a Mario Maker style game in Python

Sdílet
Vložit
  • čas přidán 6. 09. 2024

Komentáře • 302

  • @ClearCode
    @ClearCode  Před rokem +94

    You can get my pygame course here: www.udemy.com/course/learn-python-by-making-games/?referralCode=A80FECE8C76096E01111

    • @brandonjacksoon
      @brandonjacksoon Před rokem +12

      I'm not a pygame gamedev but I will buy it to support you.
      You are a cool person with clear and cool tutorials. Thanks!

    • @FraudulentFame
      @FraudulentFame Před rokem

      getting all of the graphics is hard, especially the terrain 😓
      EDIT: WHYYYYYYYYY ARE THERE SO MANY graphic/land GRAPHICS

    • @guilhermecampos8313
      @guilhermecampos8313 Před rokem

      I bought it and just finished the frooger game! Are you making or planing to make more courses?

    • @tuscanland
      @tuscanland Před rokem

      I just signed up for Kinoppi, thank you!

    • @UnleashedEntomber
      @UnleashedEntomber Před rokem +1

      Wow! you have udemy course! will enroll for sure

  • @artcadedev
    @artcadedev Před rokem +290

    The amount of effort you put into these tutorials is astonishing

    • @retuc1o
      @retuc1o Před rokem +1

      When did that adjective start existing 💀

    • @dkoorse
      @dkoorse Před rokem

      @@retuc1o I never have seen it, but I understand it somehow

    • @catsouls4714
      @catsouls4714 Před rokem +1

      @@retuc1o earth-shattering, dumbfoundingly, staggering

    • @retuc1o
      @retuc1o Před rokem

      @@catsouls4714 took 3 months for bro to reply 💀

    • @KDYinYouTube
      @KDYinYouTube Před 3 měsíci

      ​@@retuc1o I learn that adj before the common one

  • @hollowneedles
    @hollowneedles Před rokem +35

    My jaw dropped when I realized that you were literally narrating a video COHERENTLY during 10 hours of coding. I kept checking the video length because I thought I was just looking at it wrong. You are a legend dude. Hats off!

  • @brandonjacksoon
    @brandonjacksoon Před rokem +106

    I can't imagine how much time you spend on this AWESOME tutorial.
    You are helping to community a lot.
    Best.

  • @teabow.
    @teabow. Před rokem +23

    Just reading the name of this video is insane! Thank you for all the work you put into these videos, they truly are fantastic!

  • @fphenix
    @fphenix Před 7 měsíci +3

    For those wondering why the pearl does not always spawn (around 9:00:00) for some versions of Python or pygame (In Python 3.11.2 and pygame 2.5.2), do NOT use the groups()[0] as a Pearl parameter to get the all_sprites group. For exemple pass it explicitly through the Shell arguments from Level. It seems the groups() does NOT keep the ordering, hence all_sprites is not always [0].

    • @quilmatic
      @quilmatic Před 7 měsíci +1

      thanks for sharing! I was wondering why the pearls wouldn't spawn consistently.

    • @dafxer
      @dafxer Před 7 měsíci

      True, I found this odd sprite group ordering bahaviour in PYdew Valley tutorial czcams.com/video/T4IX36sP_0c/video.html, when creating and displaying apples on the trees. It took me some time to find why apples was sometimes rendered and sometimes not.

    • @dafxer
      @dafxer Před 7 měsíci +2

      So there are 2 solutions, first is explicitly pass all_sprites, and second is to override pygame.sprite.Group and add name parameter and self.name attribute like so: self.all_sprites = pygame.sprite.Group(name="all_sprites") In this scenario, you can target respective group not by self.groups[0], but with use of for group in self.groups: if group name == "all_sprites" : .... and so on :-)

    • @TriggerHappyRC1
      @TriggerHappyRC1 Před 6 měsíci

      Thank you! This should have a lot more upvotes...

    • @blackholesun4942
      @blackholesun4942 Před 6 měsíci

      Thank you I had the same issue

  • @MegaFuze
    @MegaFuze Před rokem +38

    Holy crap you uploaded this at the right time because I was actually working on my own (fairly flawed) level editor. Thanks for the time save clearcode, you absolute legend!

    • @ClearCode
      @ClearCode  Před rokem +14

      It took so long to get the level editor right! Hope it will help :)

    • @FraudulentFame
      @FraudulentFame Před rokem

      @@ClearCode i can learn from this and try to create my own (edited) version of it

    • @davidfilep1106
      @davidfilep1106 Před 8 měsíci

      Oh my god. You are actually a human who did not born "speaking" python. Everytime I watch your videos I'm thinking "How the fuck is this guy so good?!"
      It feels good to see it takes time for even you to get things right and working. Of course nobody is gonna upload a video about something they did not figure out yet but some of these tutorials really take my will to code or even live away lol. Whilst it has tremendous educational value it also makes me feel like I'm dumb. Keep it up mate!@@ClearCode

  • @freestyler6427
    @freestyler6427 Před rokem +10

    these are the most in-depth but easy to follow videos I've been able to find. Your work is astounding and appreciated!

  • @mcstudios9585
    @mcstudios9585 Před rokem +5

    i have just finished the introduction into pygame and that has helped me understand code so i can now follow you're harder and more complex tutorials such as this one thank you so much for the amount of time and effort you put into making these it helps out a lot since i am learning how to code.

  • @fidelrivera2887
    @fidelrivera2887 Před rokem +5

    Holy crap... this took me a month to get thru but well worth it. Thank you so much for these projects... I have learned so much (usually by making mistakes and spending an hour to fix it). If you follow along pay attention... steal your focus away for a second and you miss something important. Big thanks again!
    On to the next one....

  • @KaarinGaming
    @KaarinGaming Před rokem +14

    I thought the thumbnail looked familiar. You are using the same asset pack I am using in my tutorial for a platformer, but in Java.
    Nice work man!

  • @williamoliveira105
    @williamoliveira105 Před rokem +7

    This is simply amazing. I can't imagine how much effort you put into these tutorials. Thank you so much for your content, I've been learning a lot about advanced programming topics with you!

  • @tomkommando
    @tomkommando Před 9 měsíci +1

    Thank you so much for the tutorial. So enjoyable to follow along and write code. This channel delivers probably the best Pygame related tutorials I have found on CZcams this far.

  • @visintel
    @visintel Před rokem +1

    1:55:49 you can avoid if statements by using math.floor. The floor function will round down to minus infinity which will round down -0.5 to -1 for example.

    • @yisus
      @yisus Před 5 měsíci

      I did that part using integer division and I didn't have to use if statements
      def get_cell(self, pos):
      return (pos[0] - int(self.origin.x)) // TILE_SIZE, (pos[1] - int(self.origin.y)) // TILE_SIZE

  • @macroalpha5433
    @macroalpha5433 Před rokem +1

    I just wanted to say, Thank You! Your tutorials have seriously been helpful. I've been working with books and other dry material. So again, Thanks.

  • @griffin-leonard
    @griffin-leonard Před rokem +1

    Your tutorials are amazing! I'm quite familiar with pygame so I end up skimming mainly, but the fact that you go into so much detail is fantastic if I forget something. I love your venn diagrams for explaining things conceptually before jumping into code. The way you draw on the screen to explain code is great too! But even better than that, you make sure to mention details that others don't, like how something may affect your performance and how to tweak something if I want to do it a little differently. If I wasn't completely broke I would definitely donate to your Patreon for all your amazing content, you definitely deserve it!!

  • @Smurfis
    @Smurfis Před rokem

    Years ago I was asking to make games some old IT guy at my school recommended python I didn’t think it had the capability but you’ve shown true commitment

  • @fphenix
    @fphenix Před 8 měsíci +1

    I noticed something interesting around 1:54:40:
    In the get_current_cell() method this is what I did before looking at your solution:
    col, row = distance_to_origin // TILE_SIZE #(vector integer-divided by a scalar)
    col, row = int(col), int(row) #get rid of float
    I then noticed that I did NOT have the double (0, 0) cell you got by doing "int(x / TILE_SIZE)".
    And indeed, the '//' is also called 'floor division' so the result gets rounded down.
    Sure enough: int(-10.71 // 64) = -1 ; whereas int(-10.71 / 64) = 0
    So the '//' is a pretty elegant solution to fix the issue there.

    • @quilmatic
      @quilmatic Před 7 měsíci

      I also noticed this as well, thank for sharing!

  • @kawaisonayatsu
    @kawaisonayatsu Před rokem +2

    nice and excellent tutorial. clearly and elaborate.

  • @AsukaJinQiao
    @AsukaJinQiao Před rokem +3

    Well Done! Thanks!

  • @Sekiraw-42069
    @Sekiraw-42069 Před rokem +6

    For anyone wondering how to save and load maps, I've made a bit changes to the code so you can save and load your maps:
    def load_grid(self):
    grid = {(6, 3): 4, (7, 3): 4, (7, 4): 4, (8, 4): 4, (9, 5): 4, (10, 5): 4, (11, 5): 4, (12, 5): 4, (13, 5): 4, (14, 4): 4, (13, 4): 4, (12, 4): 4, (11, 4): 4, (10, 4): 4, (9, 6): 4, (9, 7): 4, (10, 7): 4, (6, 8): 2, (7, 8): 2, (8, 8): 2, (9, 8): 2, (10, 8): 2, (11, 8): 2, (12, 8): 2, (8, 6): 8, (12, 7): 8}
    for element in grid.items():
    current_cell, object_id = element[0], element[1]
    if EDITOR_DATA[object_id]['type'] == 'tile':
    self.canvas_data[current_cell] = CanvasTile(object_id)
    self.check_neighbors(current_cell)
    def save_grid(self):
    res = {obj[0]: obj[1].tile_id for obj in self.canvas_data.items()}
    print(res)
    I binded these to keys to make them work, the save_grid just prints out the current grid that you can save as you want and the load_grid loads the grid to the editor, it is not much but I hope I was able to help someone.

    • @8-bitavatar696
      @8-bitavatar696 Před rokem +1

      Appreciate this. I sort of got it working..I think. You put both of these methods in the Editor Class and the key bindings in the loop method?

    • @Sekiraw-42069
      @Sekiraw-42069 Před rokem

      @@8-bitavatar696 The objects won’t be saved, so you need to make a method for that similar to this and save that result into a different .pickle file and on the load, you read them both

    • @Sekiraw-42069
      @Sekiraw-42069 Před rokem

      @@8-bitavatar696 You can store the values in .pickle files and read from that

    • @Sekiraw-42069
      @Sekiraw-42069 Před rokem

      @@8-bitavatar696 if you send me and email or something I can send you the upgraded version

    • @8-bitavatar696
      @8-bitavatar696 Před rokem

      @@Sekiraw-42069 I sent ya one, thanks.

  • @brandonjacksoon
    @brandonjacksoon Před rokem +2

    Awesome course!
    Thanks Clear Code!

  • @MarcusBerge-gx4ll
    @MarcusBerge-gx4ll Před rokem +2

    Great video as always! I love your content! In the "get_current_cell" method in your editor, an alternative option to solve the coordinate problem, could be to just use floor division. That way, you dont have to use an if-statement, and the code would look a bit cleaner.

  • @paolo_mrtt
    @paolo_mrtt Před rokem +1

    clear code you're the best !

  • @someone_unkn0wn
    @someone_unkn0wn Před rokem +1

    I really appreciate your hard work and I look forward to supporting you as much as I can:)

  • @jamesbondisamonkey
    @jamesbondisamonkey Před rokem

    awesome tutorial, i've made some games before but this is really helpful in understanding the different pygame built in class methods, thank you !

  • @fphenix
    @fphenix Před 8 měsíci

    This is the third long tutorial of yours I follow and I really enjoy them. The quality is great.
    One thing I noticed so far, if I may, is that using the modulo operator would simplify the code and the explanation. For exemple here, around 37:00, the grid can be done with:
    for col in range(cols):
    x = (self.origin.x % TILE_SIZE) + (col * TILE_SIZE)
    pygame.draw.line(self.display_surface, LINE_COLOR, (x, 0), (x, WINDOW_HEIGHT))
    and same for rows (no need for the "offset_vector")

    • @ClearCode
      @ClearCode  Před 8 měsíci +1

      I should have also used it for the animations! My brain somehow doesn't like modulo, one of my new years resolutions is to use it more :D
      Also, glad to hear you like the tutorials :)

  • @FabioRotondo
    @FabioRotondo Před rokem +1

    Hello Christian, just stumbled upon on this course and I immediately bought your two courses on Udemy 🙂
    Thank you for this great course. I am a Python veteran (I use it since 1997) and I have develop some mini games with PyGame, but seeing your approach on some solutions is a great resource!
    Please, make more content on Godot (as your other Udemy course does) which I think is growing very strong!
    Ciao!

    • @ClearCode
      @ClearCode  Před rokem +3

      Hey, thank you so much, I will make lots of Godot stuff once version 4 is out. Once that is out I will also retire the Godot udemy course, so I'm afraid you won't get much use out of that one. (you can get your money back for 30 days)

  • @abdelfattahhilmi5213
    @abdelfattahhilmi5213 Před rokem +1

    if this is the quality of the free tutorial, I wonder how amazing the udemy course would be

  • @brandonjacksoon
    @brandonjacksoon Před rokem +4

    As a suggestion for the future projects:
    City building game, survival game or something like Foreger.

    • @ClearCode
      @ClearCode  Před rokem +13

      next one will be Doom :)

    • @chigstardan7285
      @chigstardan7285 Před rokem +1

      @@ClearCode I would love to see how you explain raycasting to make doom render environment other tutorials just seem to rush

  • @SuperOpasni
    @SuperOpasni Před rokem +1

    Keep it up bro. Sick content with simple explanations!

  • @user-gz5bs6qf7o
    @user-gz5bs6qf7o Před rokem

    Only one word 'AMAZING'

  • @vinni_codes
    @vinni_codes Před rokem

    I clicked on the video looking for bronze, and I found it was gold. the perfect tutorial

  • @user-on3sw4un6x
    @user-on3sw4un6x Před rokem +1

    Your videos are wonderful. You have done a very good job. Well done!!!!

  • @SpyderGamer
    @SpyderGamer Před rokem +1

    Amazing video as always, the quality of the tutorials is top notch. Keep it up! :D

  • @MustafaTuncay..
    @MustafaTuncay.. Před rokem

    Great video again! I can't wait to watch and imply all these :)

  • @damus6665
    @damus6665 Před rokem +1

    We want more pygame tutorials!!

  • @flioink
    @flioink Před rokem

    OK, nice one - sat through the whole thing.
    Everything works except the "bg" palms keep popping on the foreground during the gameplay portion(workd fine in the editor), for some reason.
    Can't say I picked up exactly 100% but definitely improved my overall understanding of the topic.

  • @MariusHKz
    @MariusHKz Před rokem

    I was eager for this video! Thank you so much!

  • @Loukassosial
    @Loukassosial Před rokem

    You are crazy... It's an awesome tutorial and you prolly put your whole soul in it ! GG

  • @bivamshukhadka8953
    @bivamshukhadka8953 Před 11 měsíci

    I really wish I could financially support you!!! Your channel is goldmine for programming.

  • @neoXXquick
    @neoXXquick Před rokem +1

    Amazing tutorials pls dont stop... i know its a lot of time and effort.. but...

  • @jkazulyblanco
    @jkazulyblanco Před rokem

    excellent tutorial, I hope that soon I will be able to master all the knowledge that you teach

  • @Neceros
    @Neceros Před rokem

    Fantastic work. Bravo

  • @artems5802
    @artems5802 Před rokem

    Thank you very much. I am in love with your channel

  • @git_27
    @git_27 Před rokem

    Thank you so much for the tutorials.

  • @josephhomawoo7764
    @josephhomawoo7764 Před rokem

    Thanks Clear Code!

  • @befikadutesfaye
    @befikadutesfaye Před rokem

    its the best

  • @pisuuvillarc
    @pisuuvillarc Před rokem

    I'm looking for this man

  • @muralidharan.m645
    @muralidharan.m645 Před rokem

    Bro, this is awesome 😎💥

  • @godispotato8335
    @godispotato8335 Před rokem +3

    Eu adoro seu conteudo cara! Parabens pelo seu trabalho!!! (Portuguese)

  • @therealblurrybarber
    @therealblurrybarber Před 8 měsíci

    Experiencing some weirdness with the animations. Idk if it's a Linux thing, or what. The animations seem to cycle through almost randomly. For instance the idle animation of tooth is just odd. I can't figure out why. I tried your code from the project too. Same thing. Great tutorial btw. I love you take a second to explain WHY we are doing what we are doing

  • @Dragoonmaster999
    @Dragoonmaster999 Před rokem

    You're incredible.

  • @williamm200
    @williamm200 Před rokem

    bruh your going to be making some kids happy :D

  • @ashvath4greninja
    @ashvath4greninja Před rokem

    Respect to you and thank you.

  • @MadladGuy
    @MadladGuy Před rokem

    These videos are amazing

  • @damus6665
    @damus6665 Před rokem

    10 hours???? I LOVE YOU

  • @ouuv8607
    @ouuv8607 Před rokem

    wow you deserve so much more

  • @jackscheiber4588
    @jackscheiber4588 Před rokem +2

    38:52, could you use %64 to find the offset? Like 128 becomes 0, 259 becomes 3? That seems easier to me.

    • @pollefevre817
      @pollefevre817 Před rokem

      I was trying to find a comment speaking about it because it was itching me a bit :D

  • @guillaumelanteri5052
    @guillaumelanteri5052 Před rokem

    Thank you for this video

  • @PapitaMC
    @PapitaMC Před rokem

    Great!!! thanks!!!

  • @chiragyadav5573
    @chiragyadav5573 Před rokem

    It would be amazing if you released an blooper series where for some time you are being frustrated doing bug fixing/hunting

  • @hydrochloricgamer4521

    Coder Space and you are the best

  • @gorlix
    @gorlix Před rokem

    wow, didnt know that python is capable of this! slamming a like

  • @Delfi1
    @Delfi1 Před rokem

    1:54:00
    ```
    distance_to_origin = (vector(mouse_pos()) - self.origin) // TILE_SIZE
    col = int(distance_to_origin.x)
    row = int(distance_to_origin.y)
    print((col, row))
    ```

  • @justlittleone3326
    @justlittleone3326 Před rokem

    Finally you post new video😂

  • @nlie3222
    @nlie3222 Před rokem +1

    Why are you so awesome?

  • @rrahll
    @rrahll Před rokem

    Awesome! Thanks! You are the best ;)

  • @lock_9983
    @lock_9983 Před rokem

    Re belicooo! Saludo desde Colombia

  • @rasrabotchik
    @rasrabotchik Před rokem +1

    python is really great

  • @user-jn9gz4nk8x
    @user-jn9gz4nk8x Před rokem +1

    hey, please, tell us about surface opacity (smooth appearance and disappearance). I didn't find any information on this on the internet. Thank you.

  • @BombasticTom492
    @BombasticTom492 Před rokem

    cool artstyle

  • @blackholesun4942
    @blackholesun4942 Před 11 měsíci

    He uses Sublime text
    2:30:00 for the first tile graphic is rough. It was hard to stay optimistic and innovated. A simple system early on just so i have something to see and play around with would have been nice.

  • @Ton....
    @Ton.... Před rokem

    respect for this video god damn

  • @user-ot9fp1vn7h
    @user-ot9fp1vn7h Před 3 měsíci

    really amazing, the best tutorial I've ever seen.thanks, Christian.
    but I want to mention a small bug, when I'm running the game in a not full screen window, of course in the playing level mode, if I try to move the window, the game would turn into a sky mode, only the player with the sea, no other objects. it seems the player has fallen down in loop. can you found out whats the problem? thanks

  • @CustomIcon
    @CustomIcon Před rokem

    really helped me a lot to learn about working with gui. next up please make one for pygame with moderngl (opengl bindings for python)

  • @guilhermerocha8322
    @guilhermerocha8322 Před rokem

    pixel frog really made a good assets, i'm using too

  • @choochooskillz1904
    @choochooskillz1904 Před rokem

    Found the tutorial so useful for my current project. Could you help with how to attack and have a health bar

  • @oscarlopeztorres6842
    @oscarlopeztorres6842 Před rokem

    New suscriptor 👍🏻

  • @EinDennis
    @EinDennis Před rokem +1

    Hey man, been watching and coding along with most of your videos in the past few days and these are honestly way too well produced to be free so thank you for that.
    But I have one specific problem thats been bothering me(maybe others know the answer to it as well):
    In basically every static camera game I did while coding along and trying to make it somewhat unique as well as own little attemps I encountered the problem of 2 sprites moving at different speeds while the code for them is the same. I had the problem while coding along with your beginner runner tutorial and also while trying my own flappy bird and having a floor/ceiling, and obstacles.
    The sprites use this code:
    self.pos.x -= self.move_speed * dt
    self.rect.x = (round(self.pos.x))
    I set dt at the start of every while loop with this:
    dt = time.time() - last_time
    last_time = time.time()
    and i end every while loop with self.clock.tick(FRAMERATE)
    The difference is very minor but very noticable because it looks like the obstacles stutter. I also noticed the problem getting worse with a very low framerate and almost fixed with a framerate of over 200.
    Maybe you or someone else can help as I rewrote a lot of code way too many times by now and I'm getting frustrated :/

    • @ClearCode
      @ClearCode  Před rokem

      Try to get dt with pygame.tick() / 1000 maybe it's just that

  • @magickaito
    @magickaito Před rokem

    Thanks!

    • @magickaito
      @magickaito Před rokem

      Just figure out how to donate and I really want to say thank you for your pygame tutorials. I really enjoyed learning from them. Keep up with your great works!!

    • @ClearCode
      @ClearCode  Před rokem

      Thank you so much! And super happy to hear that you enjoy the tutorials :)

  • @sebastianjossang3007
    @sebastianjossang3007 Před rokem +1

    hey, awesome video. an idea: could you not use a modulus operator to do the same as you do here 14:52? in sted of line 53-55 you could just use:
    originOffsett = self.origin
    originOffsett.x %= TILE_SIZE
    again. awesome video!

  • @elliottlysyshyn3690
    @elliottlysyshyn3690 Před rokem

    Hey! Great video, I've used you for all my learning on pygame and managed to create my own project almost entirely on my own thanks to you! I've been following along this video and just needed a little clarification on one thing: what is the self doing that we keep calling? Where is it coming from and why are we using it? Is it just a variable? Or a way of running the commands! Anyone that knows help would be greatly appreciated!

    • @griffin-leonard
      @griffin-leonard Před rokem

      When you have a class in Python, self refers to that class from within the class itself. For example, if I make an instance of a class called Example, I'd write something like:
      obj = Example()
      To call the class's draw method, I'd write
      obj.draw()
      I could write something like
      Example().draw()
      But if I'm inside of another class method, like update, you call it using self because there isn't a specific instance of Example yet to call. So I'd write
      self.draw()
      Self can access attributes (variables stored in that object, usually declared in the class's __init__ method) and methods (functions belonging to a class, which will almost always take self as the first argument)
      If you're still confused look up a video on Python classes or object oriented programming (oop)

  • @LukeManiac
    @LukeManiac Před rokem

    CRAZY!

  • @costelinha1867
    @costelinha1867 Před rokem +1

    And me thinking he'd stop making free pygame stuff after that udemy course. A nice surprise.

  • @desenvolvedor6053
    @desenvolvedor6053 Před rokem

    WOW!!! I thought PYGame was for simple games

  • @davidhuang1769
    @davidhuang1769 Před rokem

    很棒! (it means great ,awesome)

  • @GustonExE
    @GustonExE Před 10 měsíci +1

    please a tutorial on smooth scale in pygame

  • @TrueMayo1
    @TrueMayo1 Před rokem +1

    hi uhm could you make a tutorial about making a game like Geometry Dash?

  • @lenoirx
    @lenoirx Před rokem

    I would make the background trees a bit more opaque

  • @TasteDaRDX
    @TasteDaRDX Před rokem

    Thanks Cris for another incredible tutorial, your hard work is much appreciated.
    Just one question, how do I save the level so I can keep working on it or playing it another day? In other words, how do I make level 1, then 2, etc.?

  • @kalidas872
    @kalidas872 Před 6 měsíci

    I an new to python watched both videos introduction and this one now I know how to make a editor and level but I still don't know how to save the map and player status can u make a video for this one how to save and run a map and in game player save status

  • @Dark_G.H.
    @Dark_G.H. Před rokem

    for col and row in get_current_cell, why don't you just do :
    (col, row) = distance_to_origin // TILE_SIZE
    ?

  • @rgolanng
    @rgolanng Před rokem

    I WISH THERE'S A CHANNEL LIKE THIS BUT ABOUT DATA

    • @ClearCode
      @ClearCode  Před rokem +3

      working on it...

    • @rgolanng
      @rgolanng Před rokem

      @@ClearCode OMG thank you, I love your content so much, I'm looking forward to it.

  • @rtester40
    @rtester40 Před 7 měsíci

    Could you do a tutorial on how to make an rpg maker style of program in python? Love your videos btw

  • @rushtanu1108
    @rushtanu1108 Před rokem

    I love ur videos, and I greatly appreciate them! Can you do a Pac Man game next? Thank you in advance.

  • @Neceros
    @Neceros Před rokem +1

    What do you use to record/doodle?

  • @miraculousCheese
    @miraculousCheese Před rokem +1

    Hey mate, i love your videos and follow them along. I learned so much through your videos but i sometimes keep struggling to find the right way to think about stuff. i'm not copy & pasting your stuff i always google if i don't understand something but if i have to do something like this from scratch by my own it's really hard. do you have any tips how to get there faster? or is just doing and time will tell?

    • @limeedhot
      @limeedhot Před rokem

      i learned python by just following these then branching off a little bit
      i kept getting errors and then i googled up what they meant and then yes
      time will get you there
      you said this 4 months ago and i did not realize this until i wrote the comment
      i hope you have learned python

  • @Lulugogo123
    @Lulugogo123 Před 6 měsíci +3

    Pourquoi cette vidéo est mise sur la playliste de laupok sur la playliste pokemown s'il vous plaît dites moi le car je ne comprends pas

    • @yunuda.scarlet
      @yunuda.scarlet Před 2 dny +1

      Ha, t dans la meme M que moi, j'aimerais bien savoir aussi...
      Jimagine que c'est pasque il fais du codage

    • @Lulugogo123
      @Lulugogo123 Před 2 dny +1

      @@yunuda.scarlet sûrement

  • @edwardobodo2268
    @edwardobodo2268 Před 6 měsíci

    how did you make the music to this awesome video?