Your First 2D GAME From Zero with GODOT 4! **Vampire Survivor Style**

Поділитися
Вставка
  • Опубліковано 9 тра 2024
  • 🖪↷PROJECT FILES: gdquest.com/tutorial/godot/2d...
    ▶︎ GODOT 4 COURSES: school.gdquest.com/godot-4-ea...
    Preorder Below Launch Price for a Limited Time Only.
    🎓 FREE APP to Learn GDScript From Zero: www.gdquest.com
    🎮 FREE INTERACTIVE TOUR - The Godot Editor - www.gdquest.com/tutorial/godo...
    🗨 GDQUEST DISCORD COMMUNITY: / discord
    ------------------------
    🖈 CHAPTERS
    ------------------------
    0:00:00 About Roguelite Shoot'em ups/Survivor-likes and Godot
    0:01:11 Find the Easter Eggs!!
    0:02:05 Word of Advice
    0:02:37 Download & Set up the Project
    0:04:06 Quick Tour of the Editor
    0:05:05 Create the Character
    0:10:45 Add Movement to the Character
    0:32:55 Create a Game Scene and Add the Character
    0:34:01 Add Game Environment and Collisions
    0:46:10 Add Mobs that Follow the Player
    0:59:20 Make the View Follow the Player
    1:04:04 Give a Weapon to the Character
    1:08:08 Make the Gun Detect Aim at Enemies
    1:14:58 Add Projectiles to the Weapon
    1:24:45 Make the Bullets Damage the Enemy
    1:28:05 Set up Shooting Mechanics
    1:36:47 Add Health and Hurt Animations to Mobs
    1:42:38 Add Health Management to Player
    1:56:24 Randomly Spawn Mobs
    2:06:00 Add Game Over Screen
    2:12:17 Congratulations - Add up the Hidden Coupons
    --------------------------------
    CC-BY 4.0 LICENSE
    --------------------------------
    Video: creativecommons.org/licenses/...
    Attribute To: "CC-By 4.0 - GDQuest and contributors - www.gdquest.com/"
    Demo assets: CC by 4.0- "CC-By 4.0 - GDQuest and contributors - www.gdquest.com/"
    Demo code: MIT - "Copyright 2023 GDQuest" + MIT license text from opensource.org/license/mit/
    #gamedev #godot #tutorial

КОМЕНТАРІ • 818

  • @seanolson6958
    @seanolson6958 4 місяці тому +551

    For anyone else that encounters mobs sticking to the player when they collide from above, be sure to disable all moving platform layers of the `CharacterBody2D` nodes. In the Inspector panel of the `CharacterBody2D` nodes for both the player and mob, expand `CharacterBody2D` > `Moving Platform` and disable all layers in `Floor Layers`.

    • @balas2cents
      @balas2cents 4 місяці тому +22

      Thanks for this fix.

    • @Gdquest
      @Gdquest  4 місяці тому +85

      @seanolson6958 Thanks for contributing and being around.

    • @miadietrich7347
      @miadietrich7347 4 місяці тому +11

      This worked, thanks! What's the explanation for why this worked, though?

    • @Gdquest
      @Gdquest  4 місяці тому +128

      What triggered this behavior is that by default, Godot 4 has calculations to detect moving platforms, for side-scrolling games.
      So if a character is on top of a moving platform, it'll move the character with the platform.
      In this case, when the slime walks above the Player Character, Godot thinks that the Player is a platform and the Slime is on top of it so it moves the Slime with the Player Character.
      Ideally, in Godot, the "Moving Platform" should not be on by default because it doesn't make much sense outside of platformers.
      Thanks @seanolson6958 for sharing the fix with everyone. I'll try to add a caption for it in the video.

    • @miadietrich7347
      @miadietrich7347 4 місяці тому +9

      @@Gdquest This makes perfect sense, thank you for the explanation!

  • @PixelBladeStudios
    @PixelBladeStudios 2 місяці тому +95

    Finally a tutorial that covers the "why" and not just the "what". Well paced, clearly explained and properly sized to make it digestible. Thoroughly enjoyed making this Vampire Survivor. GDQuest is my go-to place for all things Godot!!

    • @Gdquest
      @Gdquest  Місяць тому +6

      So rewarding to read that. Thank you.

    • @sameeryachouh9097
      @sameeryachouh9097 Місяць тому +1

      @@Gdquest I second that! The explanations you gave for everything that we typed were awesome. It helps so much when you explain the syntax and the logic behind the programming!

    • @mikk.t.7824
      @mikk.t.7824 Місяць тому +1

      "Science isnt about what, its about why." Quote i made inspired by Cave Johnson

  • @diegoandradex12
    @diegoandradex12 2 місяці тому +76

    This was one of the best videos on the channel. Here are some questions about how we could improve the game, like Brotato style, I mean how we could start these:
    1 - How to add a wave system?
    2 - How to add upgrade items?
    3 - How to make enemies drop coins to buy items?
    4 - How to make trees breakable and drop items?
    5 - How to make a home screen, with settings and character selection?
    6 - Create character properties and update as items are picked up?

    • @natecooper01
      @natecooper01 2 місяці тому +6

      This was a tutorial, these are good follow on questions that I'm looking forward to learning more about as well. I'd add:
      1 - How to add multiple enemy types and randomly spawn them
      2 - How to add multiple items/weapons and randomly spawn them
      3 - How to add item tiers, e.g., normal, rare, legendary

    • @real_rob251
      @real_rob251 2 місяці тому

      Will you cover these at some point?

    • @kaus05
      @kaus05 2 місяці тому +13

      ​@@real_rob251 nah bro go ahead and find them on your own itll be more fun

  • @ItsUnderMotion
    @ItsUnderMotion 4 місяці тому +1

    I just subscribed yesterday after going through your Godot 2021 series for a few days and successfully making the Dodge the Creeps game, and this is the first new video I see on my feed. Best surprise ever! Thank you for making Godot so accessible to aspiring game devs!

  • @FilenameNULL415
    @FilenameNULL415 4 місяці тому +115

    I really like the Godot Engine. This tutorial really helps for a lot of begginers. You're making a good job!

    • @Gdquest
      @Gdquest  3 місяці тому +12

      So glad it works well :)

  • @HistoryUnveiled310
    @HistoryUnveiled310 4 місяці тому +4

    Thank you so much for this amazing video. Was waiting for a Godot 4.0 tutorial for so long. Great job by you guys and Nathan especially.

  • @dingus4138
    @dingus4138 4 місяці тому +1

    What crazy timing, I just picked up Godot a few days ago and have been building a VS like game and was running into some issues and then this video gets released today! Looking forward to going through this, thanks!

  • @yeiskelcisneros2298
    @yeiskelcisneros2298 4 місяці тому +8

    This was such a great start in game development. I was looking for an updated tutorial and a Vampire Survivor style project was an amazing idea. Thanks!

  • @xelonix_
    @xelonix_ 4 місяці тому +2

    Great job as always! I will be learning this during the holidays!

  • @paidexGames
    @paidexGames 4 місяці тому

    Thank you for the video. I'm very excited to start the courses

  • @kosotoru2321
    @kosotoru2321 4 місяці тому +20

    This is huge, I picked up Godot a few days ago and watched a bit of a different tutorial but never actually made any progress because of how overwhelmed I felt. Today I decided to give it another chance and you guys upload this. Thanks!

  • @-Kailinn-
    @-Kailinn- 4 місяці тому +3

    You did a great job making this really engaging, I didn't intend to get through so much since I go back to work tomorrow after a 2 week break. I started and the time went so fast I didn't realise I was close to done already. Thank you.

  • @KnochenMarkSaege
    @KnochenMarkSaege 3 місяці тому +2

    This is one of the best tutorials for development I've ever seen.
    Thank you so much for all your content & the app to get started with GDScript.
    Also, explaining all these shortcuts when you need them is a blessing on it's own.
    It feels so intuitive to use the Godot engine :D

  • @felipecorrea6472
    @felipecorrea6472 4 місяці тому +6

    I started learning Godot this week and a vampire survivor like was first little project I wanted to do, I searched for a tutorial literally the day before yesterday, thank you guys

  • @BinaryBolias
    @BinaryBolias 4 місяці тому +138

    A few notes, _generally pertaining to optimizing this project,_ based on my personal preference:
    *-* References to existing objects, such as _"HappyBoo"_ for the player character, can instead be done via an _@export_ variable to allow for greater versatility; if the node changes location in the scene tree, for instance _(even without a unique name),_ Godot will automatically update corresponding _@export_ variable entries. *(@export var happy_boo: Node2D)* This also makes changing the referenced object easy, and not require an update to the script.
    *-* Function calls pertaining to animation, such as the player character's, can be done from _func _process()_ rather than _func _physics_process()_ for efficiency, as the latter tends to be run more often, so purely visual effects would generally be better handled within _func _process()._
    *-* It may be desirable to use a static variable for the enemy's reference to the player character, though I rather use a normal variable I named "target_node" _(instead of "player"),_ which I could change on a per-enemy basis to define arbitrary locations for each enemy to travel towards, which I can use to give enemies more interesting behavior. Enemies could, for instance, randomly decide to travel to nearby trees, or other nearby enemies, or could additionally have behavior for moving away from the target, and thus randomly travel away from a nearby enemy or tree instead.
    *-* _@export_ variables may be good to have for packed scenes as well, such as the gun's bullet scene. *(@export var bullet: PackedScene)* Godot will handle updating the scene reference when the file path is changed from within the Godot editor.
    *-* Instead of setting both the _global_position_ and _global_rotation_ of a newly spawned bullet individually, the _global_transform_ value (which includes rotation and position) can be copied from the gun to set _position_ and _rotation_ at the same time.
    *-* An excuse to introduce the functionality of _Path2D_ and _PathFollow2D_ is nice, but I prefer to use a bit of math and get a proper circular border to spawn enemies on. What I did was create a new "CreepSpawner" scene inheriting from _Node2D,_ and with a single _Timer_ child node to handle spawn timing. The _CreepSpawner_ has an export variable for what kind of enemy it spawns _(multiple enemy types could hypothetically just be done with multiple spawners),_ and another export variable for its desired spawn radius. When its timer elapses, it chooses a random angle with _randf_range(0.0, TAU),_ then turns that angle _(spawn_angle)_ into a position based on radius _(spawn_radius)_ with _Vector2(spawn_radius, 0.0).rotated(spawn_angle)._ I can then just have the _CreepSpawner_ be a child of the player character; a new enemy has its _global_position_ set to the spawner's _global_position_ plus the randomly chosen position. It might sound like a lot, but it's basically just two extra lines of code in the enemy spawning function, rather than dealing with any _Path2D_ node. Using a wide, rectangular path as shown in the video produces uneven spawns, as most of the path is angularly concentrated toward the top and bottom and corners; a square would be less bad, a regular hexagon less still, but a circle is perfect. Side-note: My function to choose an angle does happen to be minutely biased to the angle of 0, as TAU radians is equal to 0 radians, but it's impossible to observe in practice.
    *-* The "Motion Mode" of player character and enemies should be set to "Floating".

    • @Craulback
      @Craulback 3 місяці тому +7

      Very helpful, thanks!
      Although func _physics_process is synced to the "physics ticks per second" you set in project settings (default 60), and func _process is run as fast as possible on every rendered frame.

    • @alejmc
      @alejmc 3 місяці тому +2

      As a totally newcomer explorer to all things Godot, this post is amazing as it answers many questions I had.
      I was feeling very uneasy with too many ‘preload’ and ‘nodes’ string based lookups… as it seems that any change: the hierarchy or renaming the nodes would create problems right away.
      There was still that ‘has_method’ one though, will see about that later.r
      Don’t get me wrong, this tutorial has been great, I even like the Path2D idea as it gives artistic freedom to any designer to create crazy spawn paths if need be; but there are definitely so many things I would like to know more about… GDScript seems to work perfectly with the existing built-in functionality but will have to dive deeper into more custom tailor made things.
      Is it easy to make a pool that reuses bullets? Do we have to or in Godot is fine without them (as it’s reference counted)? Using a full IDE like Rider? Etc

    • @BinaryBolias
      @BinaryBolias 3 місяці тому +5

      @@alejmc For a bullet pool, the bullet-firing weapon could be provided with its "pool" of bullets _(as child nodes)_ on startup, with each of these bullets able to be "active" or "inactive".
      Instead of instantiating a new bullet each time one is to be fired, the weapon would need to find one of its inactive bullets to activate and shoot, with each bullet merely deactivating itself instead of freeing itself from memory upon hit or age-death.
      Maybe the weapon could simply have an integer variable for which index value (of its child array) to be looking for an inactive bullet at, and increment this value by 1 whenever it sucessfully fires a bullet or notices the corresponding bullet at the index is already active.
      *Alternatively **_(likely a lot better),_* the fired bullets could send signals to their corresponding weapon when they deactivate, and the weapon could have an internal array of unfired bullets. _The signal sent would include a reference to the bullet node itself._ In this case, the gun would fire the last element of this array _(removing from and adding to end or arrays is most optimal),_ thus activating the bullet and removing it from the array, and any bullet which sends its deactivation signal to the weapon gets added back to the end of the array. The weapon can thus only fire if the size of this "inventory" (or "bullet clip/magazine") array is nonzero.
      This system minimizes the instantiation and deletion of objects, which could be quite nice for performance, but it _of course_ introduces stricter limitations on how many bullets can be active at once.
      I think such limitations could be an elegant aspect of design, especially if incorporated diagetically, such as, _in this case,_ with a gun which isn't resupplied from external sources, but rather has limited ammunition which (magically?) travels back to the gun after having been fired, or perhaps instead a magic staff which must continuously provide energy to all active projectiles, and thus has a limit to the quantity of them which are simultaneously active.
      Otherwise, Godot seems to have nice garbage management systems. Anything inheriting from _RefCounted_ is automatically cleaned up when no longer referenced, and the _queue_free()_ function is generally a good option for nodes and such.
      *The online documentation with extra information and tutorials can be found at docs.godotengine.org*
      Bonus idea: Enemies with enemy spawners as children. Maybe enemies can create _(temporary)_ paths as they walk, which additional enemies may spawn from.

    • @alejmc
      @alejmc 3 місяці тому +1

      @@BinaryBolias that’s quite a complete take on pools! Thanks!
      Could call for a generic pool management, maybe even Godot internal for all things pooling.
      In a full production environment I think I would go for enemies, bullets, VFX, etc to be as such.

    • @Gdquest
      @Gdquest  3 місяці тому +34

      I hope you stick around. Some of the choices made in the tutorial were deliberately aimed at simplifying the cognitive load but many of your observations lend themselves to an excellent second iteration. Thanks for posting them.

  • @Jell0yee
    @Jell0yee 6 днів тому +1

    This is the best godot tutorial I’ve seen! I like that it shows what to do and why to do it and sadly lots of other tutorials don’t do this

  • @potinhuu
    @potinhuu 4 місяці тому +6

    This is the best tutorial that i've seen so far. even moderate devs can learn much on this one ! this is GOLD. i'll share with every dev i see

  • @speedylom1170
    @speedylom1170 2 місяці тому +1

    This is an amazing tutorial! I learnt a lot of ways to do things simply via existing Godot systems that I just didn't know were there.
    Thank you so much for taking the time to create this 😁

  • @Snoows-bu4oi
    @Snoows-bu4oi 2 місяці тому

    The more time passes, the more I love Godot. My first little game! Really great, thanks again and keep it up, your channel is awesome !!!!

  • @ratboyboyrat
    @ratboyboyrat 3 місяці тому

    Very good tutorial, thank you!
    Keep up the high quality content.

  • @carlmeyer96
    @carlmeyer96 4 дні тому

    This is such a great tutorial. Thank you so much! As someone that does programming full time this hits the sweet spot between explaining enough learn godot but not spending too much time explaining the basics. I have really enjoyed following along and looking forward to expanding the project using my own sprites!

  • @persononyoutube3000
    @persononyoutube3000 4 місяці тому +2

    This is really great. As a programmer that's used Unity casually in the past, I've taken a few half-hearted stabs at Godot in the past and never really understood the "scenes and nodes" paradigm. A hands-on project format like this really helped. Now I feel like I have a pretty solid foundation of Godot and can continue on from here. Thanks for this.

  • @supjay3945
    @supjay3945 Місяць тому

    This tutorial is the most friendly to follow I have attempted. I was able to follow along without issues as far as instructions. I paused it a few times to input the codes and I did not finish in one sitting, but was able to pick up without issues. I have seen videos that jump around too quick or move there mouse too sudden. Thankyou

  • @Toon_Pirate
    @Toon_Pirate 2 місяці тому +8

    Truly one of the best tutorials I've ever followed. I usually give up after 30 minutes due to bad or confusing directions and getting stuck, but I had no problem following along with this one all the way through. And I'm really happy with the results that's given me a good foundation to build upon!

  • @zonca07
    @zonca07 4 місяці тому

    Excellent as always! Keep it up!

  • @infinite2692
    @infinite2692 3 місяці тому +1

    Mission accomplished!
    Looking forward to advance now, thank you!

  • @drgapinski
    @drgapinski 4 дні тому

    Finally got around to working through this tutorial and it was great and easy to understand. I look forward to more in the future!

  • @hithisisandreas
    @hithisisandreas 4 місяці тому +4

    Wow, this was super fun and really empowering! I can't wait to apply this to a solo project! Thanks GDQuest! ❤

    • @Gdquest
      @Gdquest  4 місяці тому +1

      Thanks a lot for writing this. I hope you showcase your project in the Discord server. It's always nice to see where gamdevs start and what they end up making over time.

  • @alexmcgreal836
    @alexmcgreal836 4 місяці тому +1

    This was so helpful, only just started out with Gadot and I have been watching some scripting tutorials, so this really helped bring it all together.
    Thank you so much for doing a tutorial where you actually explain the script, this really helps a beginner like myself and makes it so much easier to grasp a fundamental understaning of not only what I am doing, but why, something many other tutorials do not do.
    Many thanks!! 😁👍

  • @---bl3sr
    @---bl3sr 2 місяці тому

    For a long time i've been wanting to learn godot and it seemed so daunting but this was a lot of fun! Thank you so much

  • @drpainnuk3d
    @drpainnuk3d 4 місяці тому

    Awesome stuff man! Great vid as always! Looking forward to the course :)

    • @Gdquest
      @Gdquest  4 місяці тому

      Thanks a lot for the kind comment :) :)

  • @parkerpierce8931
    @parkerpierce8931 3 місяці тому +1

    Fantastic experience getting through this, learned a LOT!

  • @paulbergel9191
    @paulbergel9191 4 місяці тому

    absolutely loved the tutorial -- thank you!

  • @LoranBriggs
    @LoranBriggs 4 місяці тому

    Well done! Glad I watched this video first when trying out Godot.

  • @Grafii2198
    @Grafii2198 16 днів тому

    Honestly this tutorial sparked my interest in making games, and it was really fun making it in godot, I tried many tutorials in the past for various engines but this is the one that clicked with me! Thank you so much for making it!
    Are you planning on making a part 2 for it? With more in depth mechanics like, stats, waves, perhaps even maps and most importantly levels and items. I think it is essential for these kinds of games and having a guide on how to do that would provide so much knowledge for creating so many things and not just the ones for the purpose of this project!

  • @siamemex1555
    @siamemex1555 2 місяці тому

    Thanks for the tutorial. Total beginner and I found it really clear and helpful. Brilliant.

  • @jonsmiff
    @jonsmiff 3 місяці тому +1

    Quick question: I'm not done with the tutorial so maybe you come back to it, but it seems like the weapon_pivot marker is unnecessary, since the code is rotating the parent Area2D node. Am I wrong? I took the pistol out of the Marker2D and nothing changed...

  • @Mack_the_Knife
    @Mack_the_Knife 2 місяці тому

    I was accumulating all of this info over days through forums and small tutorials and here everything is compact in one video. Guess i still learned some more but this would have been great 😅
    Thanks for the great vid!

  • @WiLDbEAsTGameSHere
    @WiLDbEAsTGameSHere 4 місяці тому

    I was trying to learn how to make a game in godot 3d i learned shader gpuparticals 3d and how to make a basic first person controller and a few more essential parts of godot 3d in 4.2 . I wanted to go back and learn a little bit of 2d before going forward . You are a life saver . Thankyou gdquest ❤

  • @roger166
    @roger166 27 днів тому

    I love you so much,getting into godot has been easier thand expected with this goated tutorial

  • @arioche
    @arioche Місяць тому

    one of the best tutorials I have ever seen in YT. thank you.

  • @awfyboy
    @awfyboy 4 місяці тому +36

    The use of path2d to spawn mobs was very smart! Great tutorial. I've been using Godot for 3 years and have even finished a game, and yet I've learned a lot of new techniques from this video.

    • @Gdquest
      @Gdquest  4 місяці тому +13

      That's really very nice to read. It's exactly the balance I was hoping for the tutorial between being accessibile to beginners but still useful to experienced devs. Thanks a lot.

  • @jordantangco9187
    @jordantangco9187 2 місяці тому

    Absoutely incredible tutorial. I was getting super frustrated with Godot, but this has really helped me out!!

  • @kazabon_
    @kazabon_ 4 місяці тому +6

    I want to thank you and the team for all the time and effort you put into these videos and content, it feels so goo to create the first project on the journey of Game Development! Rivers of Gratitude

    • @Gdquest
      @Gdquest  4 місяці тому +3

      Thank you for writing. It feels nicer to work knowing people enjoy what we make.

  • @ishanj2021
    @ishanj2021 4 місяці тому

    Thanks for the tutorial! It'll be really helpful.

  • @AlonElishkov
    @AlonElishkov 3 місяці тому

    Thanks for the great tutorial. Really effective jump start for newbs, zero errors or bugs and very clear.

  • @bladzium1098
    @bladzium1098 3 місяці тому

    This tutorial is one that everyone should do! Amazing work

  • @Haddedam
    @Haddedam Місяць тому

    This is a great tutorial and absolutely on a proffessional level compared to other amateur efforts. I finally understand what does what and why. And it manages to do the harder thing: not over explaining.

  • @kaustubhgupta168
    @kaustubhgupta168 4 місяці тому +1

    Thank you so much for the tutorial!!!

  • @esshahn
    @esshahn 3 місяці тому

    Amazing tutorial, thank you so much!

  • @MrDinoc
    @MrDinoc Місяць тому +1

    what a well presented tutorial. i feel so confident after watching this.

  • @JuanYusteDelValle
    @JuanYusteDelValle 4 місяці тому

    This is fantastic. Thank you so much!
    When will you guys release the character animation vid? Really looking forward to checking that one out

  • @betonassu
    @betonassu Місяць тому

    Amazing tutorial! Thanks a lot for that :D

  • @wizard_under_the_hill
    @wizard_under_the_hill 4 місяці тому

    Fantasic tutorial, loved it!

  • @blackcitadel37
    @blackcitadel37 4 місяці тому +1

    Very cool. I want to build a vertical shmup with Godot instead of a roguelike but the knowledge presented here will be quite useful for both projects.

  • @sidraptor
    @sidraptor 2 місяці тому

    Thank you so much! Great tutorial!

  • @sumgue4964
    @sumgue4964 9 днів тому

    Awesome tutorial, it was a lot of fun and you are damned good at explaining everything, I never got lost.
    Subbed and bell'd.

  • @stepankondaurov5615
    @stepankondaurov5615 Місяць тому

    Really helps, thanks a lot, you rock !

  • @HighnessCuts
    @HighnessCuts 2 місяці тому

    Completed this Tutorial. ❤
    Thankyou

  • @gamedev4988
    @gamedev4988 4 місяці тому

    Damn, perfect timing too =)) I planned to do this kind of game first and had no idea whether it have a tutorial or not. Maybe I don't have to search for that anymore!

  • @windsummoner
    @windsummoner 4 місяці тому

    Thank you. I'm making other type of game, still, learn more about how things work. It is really helpful.

  • @lucas_pscheidt
    @lucas_pscheidt 2 місяці тому

    thanks for this amazing tutorial!

  • @TheOnlyDigitalNova
    @TheOnlyDigitalNova 4 місяці тому

    Ive been waiting for this thanks for making it a reality!

  • @hoasd1493
    @hoasd1493 2 місяці тому

    Phew it took plenty of time but gone successful in the end, Thanks for the tutorial!

  • @BlendFin
    @BlendFin 4 місяці тому

    Thank you for this!

  • @guyug6940
    @guyug6940 4 місяці тому +1

    Perfect timing! about to try this!

    • @guyug6940
      @guyug6940 4 місяці тому +1

      leaving off on 1:39:40

  • @blattymeow
    @blattymeow 20 днів тому

    Thank you for this tutorial, absolutely wonderful start to create my own simple 2D game! :)

  • @MrInsanityInBlack
    @MrInsanityInBlack 4 місяці тому

    Absolutely Loved It!

  • @MisanthropyMessiah
    @MisanthropyMessiah 20 днів тому

    Thanks very much!
    Even tho I have made more complex things in the past. (FPS Prototypes), I didn't know the *'Access As Unique Name'* Feature, I needed that a lot.
    This was a very fun recap for the features of Godot! I hope you make more of these in the future, I can recap features with them, Especially if there are Drastic changes in Godot 5.

  • @TheThescroll
    @TheThescroll 2 місяці тому

    This was intuitive and easy to follow, I'm very impressed with the quality of the tutorial! Thank you for putting this together, this has inspired me to give Godot a shot!

    • @Gdquest
      @Gdquest  2 місяці тому

      Very happy to hear that! Thank you for your feedback :)

  • @samuraihoedown4761
    @samuraihoedown4761 Місяць тому

    Really good tutorial, thank you!

  • @asmitsaxena5387
    @asmitsaxena5387 2 місяці тому +1

    I just wanted to say , that , I've completed very short (just adding trees in the scene and before) and the tutorial is so well explained , it carries developer tips to quickly improve , and makes coding easy too , I had never found any tutorial that good , If you want to learn godot , It is highly recommended

  • @morgangalloway1807
    @morgangalloway1807 3 місяці тому

    thanks for making such good tutorials

  • @moonbarddev
    @moonbarddev Місяць тому

    thank you so much for this!

  • @roe__jogan
    @roe__jogan 4 місяці тому

    This is really excellent. You're a great teacher! Strongly considering sighing up for the online courses.

    • @Gdquest
      @Gdquest  4 місяці тому

      Thank you for the kind words. I'm happy you enjoyed the tutorial!

  • @BonnieMallet
    @BonnieMallet 4 місяці тому +56

    Just want to confirm this is a great tutorial and worth the time. It is split up into sensible chunks, so you don't need to watch the whole thing in one go and can easily go back and review.
    The author is obviously experienced at teaching and I felt there was has high empathy toward the student (compared to some other tutorials out there). It can be daunting learning a new complex UI with a plethora of options, but GDQuest does a really great job of making sure you understand what he is doing and why.
    So all in all... Great tutorial! I agree with the others, definitely something fun you can do on a lazy Sunday afternoon! Super fun!
    Thanks GDQuest! Great job...
    PS: I also had to do two runs of the vids! I missed the 'Easter Eggs' on the first run because they pop up real fast and I was poking around in Godot! So pay close attention! There is a little 'whistle' when they pop, so if you hear one of those - make sure you are looking at the tutorial, not you Godot editor!

    • @stevenrivera6464
      @stevenrivera6464 3 місяці тому +1

      I'm glad I'm not the only one this has happened to! I've counted 3 coupons, is that right?

    • @BonnieMallet
      @BonnieMallet 3 місяці тому +1

      @@stevenrivera6464 - I had to go look at my notes... but it looks like there are 4. At least that appears the case when I did it.

    • @stevenrivera6464
      @stevenrivera6464 3 місяці тому +1

      @@BonnieMallet - ah, thanks for that!

    • @aydnsafi2054
      @aydnsafi2054 12 днів тому

      what are those coupons? for discount?

    • @BonnieMallet
      @BonnieMallet 11 днів тому

      @@aydnsafi2054 - -It was, however I think they no longer apply. I believe they have expired and are no longer valid.-
      Edit: Looks like I was wrong! See below. Maybe is the best option is to just collect 'em and have a go!
      Still worth looking at the tutorial though! It is a corker.

  • @Bippoo
    @Bippoo 12 днів тому

    This was a great tutorial thanks a lot!

  • @Capybara_49
    @Capybara_49 Місяць тому

    With the help a of this tutorial i implemented an idea for my first ever game jam and finally was able to make my first game.. So thank you for this Content ❤🎉

  • @Gupatik
    @Gupatik 2 місяці тому

    The first time, I entred, watched the first 36s then subscribed to make sure I don't miss this golden content here!!

  • @betadyne9559
    @betadyne9559 4 місяці тому +7

    Such a good job you guys are doing ! It's been almost a year since I started thanks to the similar video you released in Godot 3.5 that really helped me make things click ! I reached a level now where I think I should be the one doing tutorials on some advanced code structures !

    • @Gdquest
      @Gdquest  4 місяці тому +1

      So heartwarming to read that!

  • @miadietrich7347
    @miadietrich7347 4 місяці тому +36

    I went from launching Godot for the first time to completing this tutorial in just a few hours! This is really exciting, and so much more accessible than my attempts with Unity. I also found all the easter eggs, what a clever way to earn discounts. I applied them all, and have preordered the courses for next year. :)
    It's clear you're all very passionate about how to teach in the most effective ways. I'm really impressed, and looking forward to the rest of this journey. Thank you!

    • @Gdquest
      @Gdquest  4 місяці тому +15

      Thanks a lot for taking the time to write this. It's a refreshing coffee break in the middle of burning the midnight oil.

    • @CaptainDouchie
      @CaptainDouchie 4 місяці тому +1

      whats the easter eggs if u dont mind sharing xD, im trying to purchase the course as a gift for my friend who will be studying game dev next year

    • @forestgames03
      @forestgames03 4 місяці тому +1

      ​@@CaptainDouchie he asked not to share it + to watch the video if you want it

    • @Gdquest
      @Gdquest  4 місяці тому +4

      Thank you for respecting that :) The intention is not to prevent anyone from getting the coupons. It's to encourage everyone to compete the tutorial.

    • @Xonides
      @Xonides 3 місяці тому +1

      @@Gdquest I can assure you that folks like myself will watch it twice simply because we missed the coupons.
      I didn't realize until over halfway through the video that the whistling was supposed to be a cue to look for the code. I thought it was my roommate trying to distract me or an ad on one of my other windows.

  • @BBX-REKT
    @BBX-REKT 2 місяці тому

    am very new to making games i learned so much from this video thx man keep it up

  • @emmagetsu7369
    @emmagetsu7369 4 місяці тому

    You are the best I love you, I hope to continue seeing more tutorials like this, we learn a lot from you, when you can you can make a tutorial for a pool game like 8 pool ball from miniclip with multiplayer , thank you very much for sharing your knowledge ❤

  • @Saurus990
    @Saurus990 3 місяці тому

    This was a very good tutorial, definitely gonna check out your courses.

    • @Gdquest
      @Gdquest  3 місяці тому

      Thank you for this feedback! :) It gives us a boost while working on coursework.

  • @alexp.m.730
    @alexp.m.730 3 місяці тому

    10/10
    Well done!

  • @marginiszero
    @marginiszero 22 дні тому

    Great game dev tutorial❤❤

  • @Amitg2112
    @Amitg2112 23 дні тому

    Bhai u really rocked the game making.. Really very appreciable approach of teaching game making.. I'm ur fan now just by watching hardly 2 min video

  • @ianlouzada6448
    @ianlouzada6448 15 днів тому

    What a great video, thank you!

  • @neail5466
    @neail5466 День тому

    Man, you are awesome this is how to teach, no ' keep in mind will explain later '.... And you are disclosing all revenant topics at once..... lovely lovely...❤ +1

  • @FunnyVideos-ni4iu
    @FunnyVideos-ni4iu 3 місяці тому

    very good teaching style! liked and subbed

  • @d-n539
    @d-n539 3 місяці тому

    Very clear, thanks a lot !

  • @sashetha9548
    @sashetha9548 Місяць тому

    Exceptionally explained and easy to follow! Already thinking about some simple features I could try to implement from another tutorial. All in all, feel like I learned a lot in a very short period of time.

    • @Gdquest
      @Gdquest  Місяць тому

      Thanks a lot for the feedback :)

  • @frango_e_salada
    @frango_e_salada 4 місяці тому

    Customize While Copying! That´s my way in this lonely jurney ;) haha... Thank U so much. Can't wait for the next tutorial!

  • @breadsticks992
    @breadsticks992 3 місяці тому

    do you have to download the pack for most of this to work?
    im stuck on the movement part, specifically the part where you assign the keys, but the script part where i wrote (move_left etc..) isnt coming up?
    im literally just using a png attached to the character body 2d as a child, bc its a picture i drew.

  • @DeviantPlot
    @DeviantPlot 4 місяці тому +1

    excellently done, Nathan! quite the upgrade from the oldie Dodge the Creeps tut :) this should go into the official docs and replace the previous one on the Getting Started section there.

    • @Gdquest
      @Gdquest  4 місяці тому +2

      Thank you! I'm glad you liked it.
      We'd have to take GDQuest's name out if it were to go into the Godot Docs. That would prevent us from making a living and continuing to push content out.

  • @dousbrata
    @dousbrata 3 місяці тому

    Thanks you very much for the lesson!

  • @Rotalice2
    @Rotalice2 4 місяці тому +1

    I'll definitely be coming back after I complete that GD script course!

  • @bearwater8747
    @bearwater8747 4 місяці тому +2

    MY son and I are taking the week to learn this course. thank you so much for making this. We will let you know how it turns out

  • @paijokotak6996
    @paijokotak6996 2 місяці тому

    Thank you for this tutorial

  • @arnaud3184
    @arnaud3184 4 місяці тому

    Congratulation! Great learning material for beginner to experts wanting to learn Godot!

    • @Gdquest
      @Gdquest  4 місяці тому

      Merci ! Happy to read that.