Make your first 3D Platformer in Godot 4: Setup, Movement, and Camera Controls

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 มิ.ย. 2024
  • 🔗 Code link: gist.github.com/bramreth/d963...
    📰 Check out my Godot 4 course sale here! itch.io/s/99395/how-to-make-a...
    ✨ Socials ✨
    🐦 Twitter: / bramreth
    💬 Discord: / discord
    🥰 Patreon: / bramwell
    🎮Games: bramwell.itch.io/
    Chapters:
    00:00 Introduction and setup
    01:24 Creating a 3D scene
    03:24 Creating simple shapes
    08:52 Graphical Settings
    11:20 Supplemental Material
    12:16 Creating The Player Character
    15:10 Writing a movement script
    22:55 Adding input events
    25:17 Listening to four input events
    27:38 Camera Controls
    31:55 Listening to mouse inputs
    33:56 Storing mouse motion
    38:04 Using the twist_input
    40:38 Using the pitch pivot
    43:22 Creating node variables
    44:55 Handling degrees and radians
    45:45 Moving and the camera
    47:40 Wrapup
    #Godot4 #GodotEngine #Gamedev

ความคิดเห็น • 532

  • @adman123
    @adman123 9 หลายเดือนก่อน +400

    It's rare to find a tutorial that really understands just how new its audience members can be. This was really well done, thank you!

    • @itsToMix
      @itsToMix 8 หลายเดือนก่อน +5

      Agreed!

    • @Gravy_Guzzler
      @Gravy_Guzzler 8 หลายเดือนก่อน +4

      agreed

    • @cucubob9535
      @cucubob9535 5 หลายเดือนก่อน +4

      yeah he explains every bit of code and guides us so well so we dont get lost. Wonderful tutorial

    • @creadordejuegounity
      @creadordejuegounity 20 วันที่ผ่านมา

      agreed!.

    • @ramok1303
      @ramok1303 2 วันที่ผ่านมา

      Yeah, it's really annoying having to pause the tutorial every 10 seconds, even if it's a really good tutorial. If this video had 20 minutes with the same content, it would still take me like an like 40mins to go through it. I really appreciated just going along the tutorial without having to focus that much to not miss something.

  • @koni.K
    @koni.K 9 หลายเดือนก่อน +341

    As a unity refugee this is very useful

    • @UnknownUser049
      @UnknownUser049 9 หลายเดือนก่อน +15

      As a Godot beginner i approve of this comment

    • @MrSirFluffy
      @MrSirFluffy 9 หลายเดือนก่อน +10

      Lol same, just jumped on to Godot.

    • @neils-new-life
      @neils-new-life 9 หลายเดือนก่อน +3

      Same

    • @KostasNostos
      @KostasNostos 9 หลายเดือนก่อน +3

      Same case here

    • @moonblasterbow732
      @moonblasterbow732 9 หลายเดือนก่อน +2

      me also...

  • @jonafin_gd
    @jonafin_gd 8 หลายเดือนก่อน +77

    Someone may have already mentioned this, but Godot 4.1.2 changed Input.set_mouse_mode(Input.MOUSE_MODE_"whatever") to Input.mouse_mode = Input.MOUSE_MODE_"whatever"

    • @tobiaspeelen4395
      @tobiaspeelen4395 4 หลายเดือนก่อน +7

      for me the old way still works

  • @d_mb
    @d_mb 5 หลายเดือนก่อน +68

    Man you're the only person I could find who showed how to make a floor mesh without going through 40+ minutes of video first. Thanks so much.

  • @seppoday
    @seppoday 9 หลายเดือนก่อน +40

    In 4.2+ "Lock rotation" is under "Deactivation" in RigidBody inspector.

    • @Lambchop2559
      @Lambchop2559 2 หลายเดือนก่อน +3

      You're doing the lords work

    • @Long_Patrol
      @Long_Patrol 20 วันที่ผ่านมา

      Thank you, I bet people will be coming to this comment for a while

  • @Assortment54321
    @Assortment54321 9 หลายเดือนก่อน +43

    I just want to say, my brain likes the pacing of your tutorial. And you have a dope voice for it.
    Props to you for making this.

    • @TheWorldofMO
      @TheWorldofMO 9 หลายเดือนก่อน

      bro, just unity was an great engine ._.

    • @Assortment54321
      @Assortment54321 9 หลายเดือนก่อน

      @@TheWorldofMO :(

    • @Jiydiyon
      @Jiydiyon 7 หลายเดือนก่อน

      I tried learning Unity, then all of the stuff that happened happened, so like I guess Godot was the best choice as I had some level of experience with it on my old computer, but I don't remember a lot so....@@TheWorldofMO

  • @builderchad1
    @builderchad1 11 หลายเดือนก่อน +84

    I found this to have a great pace and level of detail for me. Your editing and commentry are also excellent. Thank you.

  • @pmbdk
    @pmbdk 9 หลายเดือนก่อน +44

    As a complete noob I have to say this is the best tutorial I have bern through! Please, please do more!

  • @almond_robin
    @almond_robin 9 หลายเดือนก่อน +56

    Awesome Introductory guide, helped me start porting a project from Unity over to Godot after the ongoing debacle with that and this really helped me get a hand on the programming workflow for Godot. For other people who just went through this walkthrough you can make diagonal movements more consistent by normalizing the input Vector by adding '.normalized()' to the end of it, this makes your diagonal movements the same speed as your horizontal movements prevent diagonal running by faster. Thanks Bramwell for doing god's work.

  • @matthuber6270
    @matthuber6270 9 หลายเดือนก่อน +12

    Dude this is a really well-made tutorial! You explain everything so well and it doesn't feel too fast or too slow.

  • @scorpi0uk
    @scorpi0uk 6 หลายเดือนก่อน +31

    Really good job Bramwell.
    Only issues I have are:
    If you're using a character mesh that isn't a capsule etc, then you will be able to see that the character does not rotate toward the camera direction as the tutorial stands.
    Abstracting the raw numbers to a variable is good code practice, creating a move_speed variable for instance.
    Adding a springarm as a parent of the camera (but still a child of the pivots in this case) is also good practice, as it shouldn't allow (or at least make it less likely) that the camera will clip through objects in the game world.
    The input direction should be normalized to avoid being able to travel faster than intended in diagonal directions, otherwise the inputs are added together.
    As a rigidbody is being used, the actual movements should be handled in _physics_process

    • @000-chatGPT
      @000-chatGPT 3 หลายเดือนก่อน

      how do you make the player rotate with the camera?

    • @scorpi0uk
      @scorpi0uk 3 หลายเดือนก่อน +1

      @@000-chatGPT basically by rotating just the mesh and not trying to rotate the whole player, I played with it for a long time but rotating the mesh towards movement direction is the only way I can find right now, I'm actually working on my 3d platformer project now so I'll copy and paste some code in a sec

    • @scorpi0uk
      @scorpi0uk 3 หลายเดือนก่อน +3

      @@000-chatGPT
      input_direction = Input.get_vector("left", "right", "forward", "backward")

      if input_direction != Vector2.ZERO:
      # Calculate movment direction
      movement_direction = yaw_pivot.transform.basis * Vector3(input_direction.x, 0, input_direction.y).normalized()
      # Rotate mesh toward movement direction
      gobot_mesh.rotation.y = lerp_angle(gobot_mesh.rotation.y, atan2(movement_direction.x, movement_direction.z), delta * rotation_speed)
      # Move towards input direction
      velocity.x = movement_direction.x * move_speed * delta
      velocity.z = movement_direction.z * move_speed * delta
      else:
      # Slide towards previous input if there is no input.
      velocity.x = move_toward(velocity.x, 0, move_speed)
      velocity.z = move_toward(velocity.z, 0, move_speed)

      move_and_slide()

    • @000-chatGPT
      @000-chatGPT 3 หลายเดือนก่อน

      @@scorpi0uk thank you so much i’ll try it now

  • @Snyper-if3kt
    @Snyper-if3kt 10 หลายเดือนก่อน +7

    Just started the video and already I have to say I'm liking your style of explaining things in a concise, yet detailed manner. Seems to be very thorough while being easy to follow for a beginner.👍

  • @MimoTooThanks
    @MimoTooThanks 11 หลายเดือนก่อน +1

    Thank you for taking the time to make this, it has been extremely helpful

  • @mgames1710
    @mgames1710 9 หลายเดือนก่อน +153

    So... we're all here after the BS pulled by Unity the other day huh 😂

    • @dynstinn
      @dynstinn 9 หลายเดือนก่อน +5

      Yep, that explains it

    • @thatcardiologist3874
      @thatcardiologist3874 9 หลายเดือนก่อน +4

      Everyone is saying Godot is easier to learn than unity, but it seems a lot more complex to me.. I was just beginning to learn unity and decided to try Godot out as well. Am I the only one who prefers Unity over Godot?

    • @dynstinn
      @dynstinn 9 หลายเดือนก่อน

      @@thatcardiologist3874 me too, but Unity is not a viable option for most people now

    • @Stop_803
      @Stop_803 6 หลายเดือนก่อน

      @@thatcardiologist3874there is a difference Godot already has a scripted written. And unity you need to add the #C script your self so it really is which one you know how to use

    • @frag0ment
      @frag0ment 6 หลายเดือนก่อน

      ​@@thatcardiologist3874no... I prefer unity because its easy but i quitted unity because latest news

  • @ZekeDeezy-e2du21t
    @ZekeDeezy-e2du21t 4 หลายเดือนก่อน +3

    No disrespect to other helpful creators out there but I've been following loads of godot beginner tutorials, and this guy here is the best by far.
    He knows how to teach. He's probably a professional teacher.

  • @cucubob9535
    @cucubob9535 5 หลายเดือนก่อน +1

    the way he explains every bit of code and guides us so well so we dont get lost. Wonderful tutorial and one of the best out there

  • @guitarmanlevi97
    @guitarmanlevi97 9 หลายเดือนก่อน +2

    Awesome tutorial! Easy to follow. The depth of explanation was just right. I’ll be checking out your other stuff for sure.

  • @SYWolf379
    @SYWolf379 9 หลายเดือนก่อน +4

    Hey man, thanks for this amazing tutorial. I've been an 3D Animator my whole career but for my free time I finally want to get into creating a few of my own games, of course a bit smaller in scale.
    It was really easy to follow along and you always came back and explained the code we were writing which is super important for me. (I followed other tutorials before and I always kind of accepted "guess this is how it works and I am just not smart enough to get it.") I never coded before, have been severly convinced I am bad at math und it seemed like dark magic but now I look at this little pill with 3D camera and feel proud and smart. :)
    Will definitly check out your other courses. Cheers!

  • @user-py4zl1hk5k
    @user-py4zl1hk5k 8 หลายเดือนก่อน +1

    Wonderful tutorial! I'm very new to game development and I was finding myself becoming very discouraged after attempting a few other tutorials and getting super overwhelmed. This one was easy to follow along with, and I really appreciate how you explain in so much detail, rather than just giving us steps to copy. Will definitely be checking out the course.

  • @njdarda
    @njdarda 11 หลายเดือนก่อน +1

    this is a godsend. so glad to see high quality tutorials for godot :)

  • @Horsehater500
    @Horsehater500 11 หลายเดือนก่อน +2

    This is so well explained, woah! I like how you explain everything in detail its super helpful

  • @markbarton5819
    @markbarton5819 5 หลายเดือนก่อน

    Honestly one of the best tutorials I've seen. Really clear and well paced. Also the editing is clean and really helps to understand what's going on. Please keep them coming, definitely going to purchase your course once I've got the hang of this!
    Thank you!

  • @MacMiggity
    @MacMiggity 6 หลายเดือนก่อน +1

    This is very solid. I really appreciated the zooming and screen animations to highlight what you are doing

  • @joshbooth6439
    @joshbooth6439 8 หลายเดือนก่อน

    Amazing video man. Loved the amount of detail you included and your clear instructions.

  • @drakithgt3088
    @drakithgt3088 8 หลายเดือนก่อน

    This was a fantastic tutorial! The pacing was perfect for easy following and everything worked as advertised. It's just what I needed to finally get a start on my project and will provide a great foundation to build up from.
    Thanks!

  • @just_a_zombie6718
    @just_a_zombie6718 10 หลายเดือนก่อน +5

    please continue this series! i bet many will love this like me!

  • @yazhifan8448
    @yazhifan8448 8 หลายเดือนก่อน +1

    incredible tutorial! Please continue making them! 🥺

  • @mattm3601
    @mattm3601 10 หลายเดือนก่อน

    Excellent work. Very well done, and will purchase the course. Please continue the video series too!

  • @user-gv6nq5yb8i
    @user-gv6nq5yb8i 8 หลายเดือนก่อน

    thank you so much man this really helped me its rare to find someone who actually explains how everything works

  • @librev5881
    @librev5881 7 หลายเดือนก่อน +1

    I am currently working on a 3D-world grid-less turn-based RPG and this tutorial has been incredibly helpful in setting up the basis of what I am working towards. Thank you so much for this tutorial, you have no idea how helpful it has been!

  • @RuairiOTuathail
    @RuairiOTuathail 5 หลายเดือนก่อน

    Please continue with these videos. Very well done,. Well paced and clearly explained without going in to too much detail straight from the get go. Perfect for me. Thanks a lot.

  • @draicor
    @draicor 6 หลายเดือนก่อน

    The way you paced this video, and the contents, is pure gold...⭐⭐⭐⭐⭐

  • @orewakage_
    @orewakage_ 8 หลายเดือนก่อน +2

    You Don't Know How Much This Helped Me!

  • @mellohd
    @mellohd 7 หลายเดือนก่อน

    Really appreciate the tutorial! I was feeling reaaally intimidated by learning gdscript and getting into godot in general as a beginner in game development and this made it feel so much better!

  • @peadamo
    @peadamo 6 หลายเดือนก่อน

    a beautiful and perfectly done tutorial. Everything is explained clearly, and very easy to follow. Thank you so much!

  • @allinindie
    @allinindie 5 หลายเดือนก่อน +2

    This was exceptionally well put together. One of the clearest and most helpful tutorials I've ever watched in general. I've worked in GameMaker for years now, but am considering how feasible it'd be to work in 3D in Godot in the future. Even though I didn't "follow along" with the engine open, I now have a really good sense for how Godot operates and it's actually pretty damn exciting. Definitely keen to give it a proper go now and see what I can russle up through prototyping at some point!

    • @NOFRILLS_GAMING
      @NOFRILLS_GAMING 3 หลายเดือนก่อน

      same! Worked in gamemaker since overmars released it, way back in the stone age - totally agree with you on his presentation. It's gotten me back into it for sure

  • @sourlesscream1272
    @sourlesscream1272 9 หลายเดือนก่อน +6

    dude this is feckin amazing. i have learned a lot from this, already expanding my knowledge on godot... added sprinting and jumping. chance i may have found doing so easier being a unity dev for 10 years but this has helped me learn this engine
    edit: fov broke, don't know what i did

  • @Sithdown
    @Sithdown 11 หลายเดือนก่อน +1

    Amazing tutorial. Information dense, yet easy to follow.

  • @Snow-rr7nj
    @Snow-rr7nj 6 หลายเดือนก่อน

    You explain it so well! I've been following you on my Godot!
    Thank you!

  • @miscalt
    @miscalt 4 หลายเดือนก่อน

    I really appreciate how slow and steady this tutorial is. Exactly what I needed. Cheers to Day#2 of learning game dev !!

    • @CalamityIDK
      @CalamityIDK 4 หลายเดือนก่อน

      Me to

  • @JayFolipurba
    @JayFolipurba 5 หลายเดือนก่อน

    That was clean and concise. I really learned some basic things I should have known a long time ago. This helped me get over the "this doesn't work, now everything sucks and this shouldn't be this complicated" bump

  • @cirochik943
    @cirochik943 9 วันที่ผ่านมา

    A very nice edit, accompanied by a very entertaining commentary. In addition to this, the tutorial is very well done, guiding the viewer step by step to achieve his goal, a really nice video!

  • @tarekmustafa2525
    @tarekmustafa2525 9 หลายเดือนก่อน +2

    Amazing tutorial, thank you!!

  • @WillHuizenga
    @WillHuizenga 6 หลายเดือนก่อน

    This is far and away the best guide I have found. I look forward to learning more from you.

  • @fruner8152
    @fruner8152 7 หลายเดือนก่อน

    jesus this is SO MUCH better than a lot of other godot tutorials, especially a lot of those weirdly high production value ones that YT pushes to the top of search results but are outdated and unclear. thank you so much for making this!

  • @RaubeR666
    @RaubeR666 10 หลายเดือนก่อน +21

    Thanks for the great tutorial. I've been doing something similar recenly, so here are some notes:
    14:35 Why not use the "capsule" shape directly? It should be more performant in theory.
    14:50 I've had an issue (climbing slopes) with this one and opted to instead lock all 3 angular axis, maybe it will help someone.
    17:05 Isn't it better to just call them "built-in functions"? In terms of "virtuality", you can override the user-defined ones as well.
    19:50 It is potentially bad to apply physics-related interventions from the "_process" callback. You could switch some internal state from "_process" and then apply force in "_physics_process". Or just set the "constant_force" from "_process", so that the physics thread can apply it when it pleases.

    • @infinity281
      @infinity281 9 หลายเดือนก่อน +2

      thanku :D for the slopes issue!!!

    • @RaKanMusik
      @RaKanMusik 7 หลายเดือนก่อน

      callbacks

  • @themattempire42
    @themattempire42 6 หลายเดือนก่อน

    This is a fantastic tutorial, have learned a ton about Godot, and inspired on various approaches to improve my own tutorials. Great stuff!

  • @owenl.564
    @owenl.564 11 หลายเดือนก่อน +1

    Thank you for the awesome tutorial! Godot is underappreciated.

  • @TEKDAD
    @TEKDAD 8 หลายเดือนก่อน

    Simply perfect. Right speed for a beginner, well explained. Subscribed.

  • @Twelveoglock1
    @Twelveoglock1 9 หลายเดือนก่อน

    Great tutorial! Looking at buying your course!

  • @randomcreature147
    @randomcreature147 3 หลายเดือนก่อน

    thank you so much for linking the code in the description so we dont have to meticulously type out every character, it helps alot

  • @jackslammer
    @jackslammer 9 หลายเดือนก่อน

    Fantastic Tutorial! Great Work!

  • @GrimBasterdthe1ne
    @GrimBasterdthe1ne 7 หลายเดือนก่อน

    Thank you man. Very hard to find a tutorial that is easy to follow

  • @WebCamCartmell
    @WebCamCartmell 9 หลายเดือนก่อน +1

    one of if not the best intro tutorial i've experienced god damn

  • @SunnyShuklathedoctor
    @SunnyShuklathedoctor 6 หลายเดือนก่อน +2

    My god, finally someone who told me how to do the mesh on the ground!! I was dying trying to figure it out. Subbed and liked, best tutorial by far.

  • @s81n
    @s81n 3 หลายเดือนก่อน

    What an utter gem of a channel. My game dev skills are so rusty they may as well be non-existent at this point. This was a fantastic and succinct tutorial to get anyone up and running fast. I learned some new tricks too!

  • @choloepushoffmanni1006
    @choloepushoffmanni1006 8 หลายเดือนก่อน

    Really nice tutorial! Thank you for such a useful introduction to godot 4

  • @nicks4727
    @nicks4727 9 หลายเดือนก่อน

    This was the best getting started video for godot I have seen!

  • @abigailenderland6146
    @abigailenderland6146 6 หลายเดือนก่อน

    Dude, this is the best Godot 4 Tutorial I've found so far.
    Thank you very much !

  • @tc8464
    @tc8464 10 หลายเดือนก่อน +1

    Great tutorial - well done!

  • @LawfulFlicks
    @LawfulFlicks 8 หลายเดือนก่อน

    thank you very much for this video, this is the exact kind of camera style i want for my game, and even if i did find one like this before, all were outdated, so thank you

  • @cpubug
    @cpubug 2 หลายเดือนก่อน

    honestly I love your tutorials super easy to follow;
    thank you very much :)

  • @frankeeeej
    @frankeeeej 9 หลายเดือนก่อน +17

    Came here after the Unity install-fee debacle. This is an excellent introduction to Godot for someone coming from Unity. Thanks a lot :)

    • @newsciencestuff5540
      @newsciencestuff5540 9 หลายเดือนก่อน +4

      i love seeing greed get punished, delicious tears of the people who pushed this idea. was it the board or ceo idk, but whoever it was must be shitting their pants now lol

    • @sourlesscream1272
      @sourlesscream1272 9 หลายเดือนก่อน

      same, you trying out different alternatives other than godot too?

    • @Learnerofthings
      @Learnerofthings 9 หลายเดือนก่อน +1

      I am loving it so far. Unity is toast.

    • @frankeeeej
      @frankeeeej 9 หลายเดือนก่อน

      @@sourlesscream1272 I've dabbled with Unreal over the weekend as well. Right now I feel:
      - Unreal is a superpowerfull piece of software, but has 'it's way of doing things' (I have an existing charactermodel and animationrig, and haven't been able to get it to work as of yet)
      It also has a whopping 36 gig install size, and my pc doens't run it super smoothly..
      - Godot is super lightweight, but with a lot less functionality. (for 3D games at least)
      With this streamlining comes more of a 'you figure out your own way of doing things' kinda approach, which I appreciate. With help of this wonderful video I could make a simple 3D platformer with an animated character in a couple of hours :)
      Also my pc runs Godot a lot better than Unreal.
      It's also open source and a non-profit organisation, which in todays technofeudalistic economy gives them 100 bonuspoints in my book :)
      So yeah, I'm currently leaning towards Godot. How have you been getting a long?

    • @thatcardiologist3874
      @thatcardiologist3874 9 หลายเดือนก่อน

      Everyone is saying Godot is easier to learn than unity, but it seems a lot more complex to me.. I was just beginning to learn unity and decided to try Godot out as well. Am I the only one who prefers Unity over Godot?

  • @user-tj5vu4wm9l
    @user-tj5vu4wm9l 4 หลายเดือนก่อน

    This is super easy to follow and super helpful as well
    Thanks a lot my man

  • @possiblyzslot838
    @possiblyzslot838 6 หลายเดือนก่อน

    Great tutorial! I'd love to see more videos like this on Godot.

  • @igork1336
    @igork1336 11 หลายเดือนก่อน +3

    Thank you for the course. A very detailed explanation. Bought it

    • @BramwellWilliams
      @BramwellWilliams  11 หลายเดือนก่อน +1

      Thankyou so much for the support!

    • @stefanbachmeier
      @stefanbachmeier 11 หลายเดือนก่อน +1

      Same, world class Godot course and tutorials - please keep up the amazing work!

  • @benpecto.benpecillton
    @benpecto.benpecillton 4 หลายเดือนก่อน

    Great video, very comprehensible, great pacing, and great explanations.

  • @Ramiobomb
    @Ramiobomb 6 หลายเดือนก่อน

    This vid is edited uniquely superb. Thank you!!

  • @dandanthesuitman6013
    @dandanthesuitman6013 9 หลายเดือนก่อน +4

    Yeah this is a really excellent tutorial. Like a few other commentors, I'm a Unity refugee and I super prefer this level of deep explanation about even the most simple concepts, it's so helpful to properly understand the tools.
    Thanks!
    (Also saw a semi recent 4 dev Game Jam of yours, kicked ass)

  • @jacobsmith1503
    @jacobsmith1503 9 หลายเดือนก่อน

    So glad to see a rigidbody controller tutorial rather than kinematic. Excellent material, thank you!

  • @user-bl9hq2gf6i
    @user-bl9hq2gf6i 3 หลายเดือนก่อน

    this is really really well done! and Ive watched / read alot of tutorials. thank you! I can finally make my blob wander through my wonderful 3d assets :-)

  • @xrphoenix7194
    @xrphoenix7194 2 หลายเดือนก่อน

    Amazing tutorial. I cannot describe how helpful and thorough this is. Thank you, sincerely.

  • @beroraw3020
    @beroraw3020 5 หลายเดือนก่อน

    Very well put together video. Thank you

  • @adamrees3740
    @adamrees3740 4 หลายเดือนก่อน

    Exceptional Video and Brilliant commentary. Thank you for all the help!

  • @oshea_entertainment
    @oshea_entertainment หลายเดือนก่อน

    This tutorial is perfect, both for beginners and regulars. Thank you🙏

  • @BrettKromkamp
    @BrettKromkamp 11 หลายเดือนก่อน

    Nice one! Thanks for this.

  • @firstnamelastname8077
    @firstnamelastname8077 6 หลายเดือนก่อน

    This is an amazingly instructive video, thank you for making it.

  • @darkmtbg
    @darkmtbg 2 หลายเดือนก่อน

    Amazing Video and straight to the point while ensuring everyone is following along. these are really that style of videos that i need. thank you so much. Only really introducing the things when they are relevant and giving a brief but yet detailed explanation on the things.

  • @dmitriylebedkin1844
    @dmitriylebedkin1844 2 วันที่ผ่านมา

    Thank you a lot for an amazing tutorial!

  • @norwis120
    @norwis120 8 หลายเดือนก่อน

    best beginner tutorial ever, thank you!

  • @718Outdoors
    @718Outdoors 5 หลายเดือนก่อน

    incredibly concise and calm

  • @MartyJames23
    @MartyJames23 9 หลายเดือนก่อน

    Thanks a lot for the tutorial. Just what I needed.

  • @dominusumbra9202
    @dominusumbra9202 9 หลายเดือนก่อน

    You speak really well and your teaching method is very effective. Thanks for the video, I'll be following you! Another subscriber.

  • @Bens1s
    @Bens1s 9 หลายเดือนก่อน +1

    just a great Tutorial you did there, that was not my first time of godot. But at the first Time i wasnt doing it properly so now i wanted to make a basic Project. Thanks again for that great Tutorial

  • @codecrafterstudio
    @codecrafterstudio 8 หลายเดือนก่อน

    This is a fantastic tutorial for a beginner like me. Switching from Unity to Godot feels like magic to me (ironically). I now consider Godot as my second home. Thank you for this wonderful tutorial.

  • @PollyCot
    @PollyCot 9 หลายเดือนก่อน

    Great video, really clear and concise.

  • @movies-xr2sc
    @movies-xr2sc 9 หลายเดือนก่อน +1

    I have a lot of trouble understanding and picking things up, especially coding but this video explained it in a way that while still a bit confusing (for me personally) was still able to interpret better than other videos, plus I've made more progress in the hour I've spent on godot watching your videos than the 2 months I spent following stupid Unity guides!
    I really hope to see more videos because a video format is easier for me to follow than a written one (I have ADHD and a tiny bit of the 'tism so following/remembering instructions isn'y my strong suit) but thank you for making it so new user friendly :)

  • @yume7z185
    @yume7z185 4 หลายเดือนก่อน

    Your voice is relaxing and you're great at teaching. Keep it up!

  • @alexl7213
    @alexl7213 15 วันที่ผ่านมา

    Very concise and detailed explanation. 5 stars. Thank you.

  • @leewonjae6453
    @leewonjae6453 8 หลายเดือนก่อน

    Thank you so much !! It was very helpful!!!

  • @TheInfiniteAmo
    @TheInfiniteAmo 5 หลายเดือนก่อน +1

    10/10 tutorial for beginners, absolutely perfect for me as someone who has never used game engines or even done basic coding

  • @rumble1925
    @rumble1925 8 หลายเดือนก่อน +10

    At 45:30, instead of using deg_to_rad(), you can actually reference the degrees directly: "pitch_pivot.rotation_degrees.x". So you don't need to convert the clamped values to radians.

    • @lemmings1892
      @lemmings1892 5 หลายเดือนก่อน

      For me, it locks the pitch of the camera

    • @rumble1925
      @rumble1925 5 หลายเดือนก่อน

      ​@@lemmings1892 Here's the code I have:
      camera_mount.rotation_degrees.x = clamp( camera_mount.rotation_degrees.x, -45, 45)
      But take it with a grain of salt, I'm just a newb. It works for me and I did make some changes from the tutorial, I wanted more of a shooter-esque control scheme.

  • @nicky55
    @nicky55 9 หลายเดือนก่อน

    Thank you for this great tutorial!

  • @theaussieninja8176
    @theaussieninja8176 8 หลายเดือนก่อน

    adding comment half way through this is definitely very in-depth which is the kind of tutorial I like best especially if you using a program for the first time

  • @redhairbabyface
    @redhairbabyface 9 หลายเดือนก่อน

    amazing video, you really got a knack for this

  • @OminousDog
    @OminousDog 3 หลายเดือนก่อน

    Best starter 3D Godot tutorial I've seen yet. Thank you. I'll be buying the last sections too.
    Some feedback:
    In the code writing segments:
    The slow detailed explanations was really good in most of the tutorial, except for in the code writing segments without lots of pausing and rewinding.
    Please use one set way of writing the code and explaining - with steps - and tell us that this is how you will be explaining the writing of code at the start of the video, so it's a process to follow for learners each time a code writing segment comes up.
    E.g. Brief overview of what the code is for, before-while the video shows it being typed. -> PAUSE (showing all of the newly written code) to let people copy it and take it in (pausing a couple of times could even be helpful) -> Then go over the different parts in detail.
    I understand you can spam pause and rewind as much as you like, but sometimes there was just too much going on at the same time, descriptions and new code being added, with a cut to a new scene without time to process what's going on.
    Why in this order?
    When I've been doing these tutorials it has helped me learn to hear a brief overview -> copy the code myself, because when you're writing it yourself it forces your brain to figure out which parts are doing what and where the values for the variables are coming from, etc. Then the actual proper explanation of what's going on tells you if you're right or wrong.
    Writing the code as a newcomer is also the most stressful part of learning game engines.
    Making it more orderly also allows time for taking notes, as in the segments I was always back and forth over one sentence.
    Thx again. :)

  • @thatsenough391
    @thatsenough391 2 หลายเดือนก่อน

    This helped so much, thanks!

  • @SmartBatto
    @SmartBatto 8 หลายเดือนก่อน

    I Appreciate this SO much, I found a "Movement tutorial in 6 minutes" and I just didn't understand anything and the Userguide, even though I followed it to the letter became super non-explainy(?) Your voice is also Extremely nice!

  • @TheLastPhoen1x
    @TheLastPhoen1x 9 หลายเดือนก่อน

    Nice and chill, conductive to learning.

  • @derv1sh135
    @derv1sh135 6 หลายเดือนก่อน

    Awesome work thank you!