I wish I Knew about these Godot Features Sooner - Godot Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ก.ย. 2024

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

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

    What are your favorite tips or tricks for using Godot? Please checkout the demo for my upcoming game Hexagod: store.steampowered.com/app/3059390/Hexagod/

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

    Small Tip for the Ctrl+Drag: I used to have to deselect-reselect to get the ctrl-drag to work; it was very finnicky. The better approach is to just click and drag the node w/o pushing CTRL, and then when you're ready to drop it, THEN push Ctrl

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

      Oh wow, I run into that issue to. Thank you!

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

      @@Aarimous if you hold shift instead of ctrl and dropping it, you get the full node path to that object in relation to that script. This includes automatically using .. to go up a parent level

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

    Small warning about enums.
    If you save it into something, like a variable using a dropdown with export, a resource or something like that, and then add or remove something from the enum list, it can shift the selection to a wrong one.
    enums are great, but it's something to be mindful of when using them in anything that saves and loads.

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

      You can technically avoid this by explicitly assigning the values, so the first enum = 0, second is 1, etc. So no matter what you remove, the values for each one remains the same.

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

      @@sataStrike That's true, but things will still have the value that you saved to them unless you change it. So if you add A = 10, then remove it, you'll have an invalid index, and if you later add X = 10, then that thing will suddenly be X.
      You could get around that as well though, by setting things to a default value if it's no longer in the list, never fully remove something and keep it as placeholder, or some other method to ensure validity.
      There are many ways to handle it, my point was just that it is something worth keeping in mind that it works that way so you can work around it to prevent unintended behavior.

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

      Thanks for the warning - I think he's about to find that using dictionaries is a better approach in some cases, of course. Here’s a quick summary of what I've gathered about enums vs dictionaries:
      Use Enums if you need a fixed, small set of related constants that won’t change frequently and where performance and memory efficiency are critical.
      Use Dictionaries if you need flexibility, dynamic content, or need to associate additional data with each key. Dictionaries are more forgiving with changes and are better suited for complex or evolving game data.
      Both Enums and Dictionaries have their strengths, so the best choice depends on the specific needs of your project. This video might need a follow-up with all the gems that people are sharing :) Feel free to chime in with more tips or experiences!

    • @gifthammer2
      @gifthammer2 24 วันที่ผ่านมา +1

      I was about to call this out too. Enums ARE a powerful tool that you SHOULD use, but only people that are great at planning ahead really get the most benefit out of them. I've had a couple of nightmarish project refactors caused by using enums before I'd nailed down the scope of the system.

    • @lNo0n3
      @lNo0n3 5 วันที่ผ่านมา

      Use Dictionary or Arrays and not enums if you have to save/load anything in a list. Enums should be static.

  • @richbuilds_com
    @richbuilds_com หลายเดือนก่อน +28

    I haven't delved into the godot source but there has to be a tiny performance advantage to using % of $. $ must be parsed each time in case the scene tree has changed, whereas % is a location independent reference ie. it's a link to its location in memory, not it's location in a tree.

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

      Oh perfect, I love % because of the QOL, but good to hear you also think it's the more performant of the two options.

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

      @@Aarimous This has been stated by GDQuest and others who have done the tests. % is more performative

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

      Isnt the only drawback is that theres a limit on how many %s you can use? Its not like 20-50, a LOT more, but I think theres a limit

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

      @@CouchBit I think the downside is that those % reference won't survive loading a new scene. In my opinion using an event bus via auto-loaded script is a more robust solution, as it remains persistent.

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

    I've been using Godot for years and I've watched a lot of videos to help me be a better creator of games. You sir are one of the best. Not sure how long you've been doing this but I'm very happy to have found you. This video feels like getting advice from a better version of me. It's super clear and relatable. Thanks!

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

      Wow, I'm happy this helped you out so much. Good luck on your game dev journey!

  • @AngelPandaSpace
    @AngelPandaSpace 25 วันที่ผ่านมา +12

    When i saw the Godot winodw being called "Hexagod", i was like "wait, i swear I know that game."
    I did know

  • @Alexander_Grant
    @Alexander_Grant 26 วันที่ผ่านมา +6

    I feel like I'm on a weird TH-cam path where it keeps recommending me all the devs of the indie games I play. Watched through this whole thing, then went to the description for the links, and I had no idea you made Chess Survivors.

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

    Related timesave to ctrl-dragging a node into the editor to make a reference:
    After you've done that, it's really easy to change it to an export variable (changed onready to export and delete everything after the =) which helps keep your code modular.

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

      Great tip!

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

    The getters and setters are huge. It makes it so easy to throw a bunch of logic down the chain. You get hurt? When your health gets set, you throw out a signal with your old health, new health, damage type, anything else you want. Update UI, communicate with other systems that manipulate damage, calculate weakness/resistance, proc items your character that has that have on hurt effects, etc. etc.
    Love that one, definitely a great tip to share.

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

    Chess Survivors: purchased; Hexagod demo: installed. Cheers!

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

      Hell yeah! Enjoy :)

  • @Aranueth
    @Aranueth 28 วันที่ผ่านมา +4

    I really love the distinciton between gamdev who is on TH-cam versus TH-camr who sometimes develop games. A lot of the tutorials on TH-cam are geared towards beginners or getting things done quick and dirty.
    That might be fine for a tutorial or a gamejam, but I'd like to see what are the things that are important in the "real world"

  • @debatabledoggo
    @debatabledoggo 26 วันที่ผ่านมา +2

    8:48 last tip is very reassuring, I am constantly finding new and better ways to do things and feeling like I should rewrite my code, but every time I do I get closer and closer to burnout. it's nice to hear that its okay for things to be imperfect by someone who has actually released games before

  • @calanor4130
    @calanor4130 19 วันที่ผ่านมา +1

    9:16 I appreciate the candour 😄

  • @Gerrit-y6b
    @Gerrit-y6b 20 วันที่ผ่านมา

    the info about the unique name option/setting is gold.. this will help alot! thanks buddy

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

    Dude your timing is perfect on this as I just started up a platformer as my first game 2 days ago. I really hope you do more of this cause it all goes such a long way.

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

    Great video!! These are really useful tips. Would love to see more on how you actually figure stuff out for example how you actually use those enums.

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

    Always fun to catch your streams. You definitely should do more TH-cam content too! Would love to see you showing more details on each tip you just showcased. Adding examples and showing how your approach is. Especially use of set/get and global @export variables.
    Thanks for the video!

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

    First I'll say, awesome job learning more things that can help you in your dev journey :D There are always things to learn and I hope you learn more things to help you along the way :D
    You could create groups back in 3.x, but it was a hassle and pain in the arse. Made much easier by just having that tag in 4.x
    The onready and unique names can be names for sure, but personally i prefer just using the export and assigning them in the inspector. It removes any chance of error from typing names out, and like unique names you can move them around in your tree and not need to update your code.

  • @pixelartrpg
    @pixelartrpg 21 วันที่ผ่านมา

    Subscribed. Thank you for the tips!

  • @jasenlakic5033
    @jasenlakic5033 4 วันที่ผ่านมา

    Very nice tips, thanks!

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

    A few weeks ago, I competed in a game jam using Godot for the first time in years. It took a while to get used to all the changes, but I was really impressed by how much easier a lot of things are to do now!

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

    Try visual shaders. They use node-based shader editing. If you are familiar with Blender's node-based shader setups you will find the visual shader editing very easy to use.
    When adding a new shader change the type from Shader to Visual Shader.

  • @dani_byte
    @dani_byte 22 วันที่ผ่านมา

    Great! Very inspiring, it really help me

  • @ptkstefano
    @ptkstefano 23 วันที่ผ่านมา

    This is the rare really powerful video for Godot. Every tip brought in something new for me and my code will level up a ton. Thanks a lot!

    • @Aarimous
      @Aarimous  23 วันที่ผ่านมา

      Happy this helped, I'll try and make another one with small tips like this.

  • @dave7642
    @dave7642 24 วันที่ผ่านมา

    great vid, but i do have 1 thing that i think would help you a TONNN, look into custom resources, much easier to maintain and expand, was a huge game changer for my projects :3 really suggest godotneers vid "Data models - using data to create extensible, maintainable games in Godot"

  • @Kaspisify
    @Kaspisify 25 วันที่ผ่านมา

    Trying Hexagod now. Really satisfying sounds. I like it so far.

  • @marydzekh7590
    @marydzekh7590 19 วันที่ผ่านมา

    All the features you covered in this video were awesome, but the biggest news for me was: "OMG I can just drag and drop nodes from the scene tree to my code, seriously!?"

    • @Aarimous
      @Aarimous  19 วันที่ผ่านมา +1

      You can even drag and drop properties to get a string of their names. Cheers!

  • @nyaanon
    @nyaanon 17 วันที่ผ่านมา

    Omg thank you for this video. Instant sub

    • @Aarimous
      @Aarimous  17 วันที่ผ่านมา

      Hell yeah!

  • @generic........
    @generic........ 25 วันที่ผ่านมา

    HOLY MOLY bro has never created a file for organization! :O
    haha anyways, great video! :)

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

    Love the video! I would love to hear more about how you use setters/getters and enums in your state machines. I have a "working" state machine in my game but it feels clunky.

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

      My state machines are usually very light weight and are basically, if state changes to another state change things based on that. I normally use a match statement and then change things like color, animation, or whatever I need to.

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

      @@Aarimous Thanks for the reply! I'll have to see how I can fit some of those concepts in. Right now I use new nodes for each state and have one StateMachine node that manages switching between them

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

    I was always wondering how to use Enums better, so thank you!!

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

    Neat, guess I gotta read up on enums and setter states a bit! Thanks!
    During this last game jam I did, I was using a slew of signals. Some of these signals connected to instantiated scenes (projectiles like bullets), but the signals would disconnect when being instantiated. Came across a post talking about creating a Signal bus using autoload in project settings. You then connect or emit two or more scenes by pinging off of the Signal bus, which made connecting to instantiated scenes so much easier. Performance-wise, I don't know the impact of having a Signal bus too large.
    Swap connect() with emit() for outgoing pings. Effectively just using signals, with one more reference name at the front, lol.
    [SignalBusName].[SignalName].connect(function_name_you_want_to_connect_to)
    (Having a debug os reset scene in autoload is also pretty snazzy)

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

    very cool tips!

  • @NicholasThompson1982
    @NicholasThompson1982 14 วันที่ผ่านมา

    Hexagod looks exactly my kinda game. I love Settlers of Catan which this looks like it has strong vibes of.

    • @Aarimous
      @Aarimous  14 วันที่ผ่านมา +1

      Glad those Catan vibes come through a bit here. Cheers!

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

    Tip 2 is great, also makes me think you could use the GUI Auto Layout plugin 😉

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

    0:57 This frame made me spit my tea all over the tabe. WHY TF YOU NEED THAT MANY @export VARS?!!!

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

      I am a collector of export vars. ;)

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

    hold up I've seen hexagod in the godot subreddit

  • @Quick_Noise
    @Quick_Noise 24 วันที่ผ่านมา

    8:50 being a Perfectionist made it so much harder for me to learn game development. whatever I do I never feel satisfied with the results. so I stop working on my games completely. unfortunately

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

    thanks!

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

    I use export dictionaries does a very similar thing, Can access normally as a dictionary. Neat they added a feature for it, curious if it works better/different.

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

    Love your last advice :D I am making my first game and because of lack of skill in coding it is really just barely working :D Sort of :D

  • @dagan474
    @dagan474 23 วันที่ผ่านมา

    Just found our channel, subscribed!
    How did you learned godot? I have hard time with it

    • @Aarimous
      @Aarimous  23 วันที่ผ่านมา

      I started by watching GQ Quest and Heartbeast videos. Then I started making my own projects and joining game jams. My early games were all bad, but they got better over time. You can see my history here: aarimous.itch.io/. Then one day I finally had the urge to make my first commercial game Chess Survivors. Keep learning, keep growing, and keep making more games. You got this!

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

    this is likely personal preference but I really dislike setters. Assigning a value to a member variable looks like a simple assignment but it can have many repercussions and function calls behind it that are 'hidden' in the setter. Using a setter-method implies that there will be something happening other than just setting the value. But that is just me being old.
    On the $ and % prefixes to access nodes on the scene's tree: I agree that % is a huge improvement in readability over $ but it loses type info. I usually create an onready-var of the correct type that resolves the node via find_child.

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

    Thanks!

  • @YTcommentz
    @YTcommentz 24 วันที่ผ่านมา

    How much of a programming background do you need before getting started?
    I took a java course before and I was completely lost. I wasn't able to give it a serious effort because it was too difficult to balance that on top of my other classes at the time.
    I guess my main question is should I just learn through trying to making games rather than studying a course independently?

    • @Aarimous
      @Aarimous  24 วันที่ผ่านมา +1

      I don't think you need any and in fact learning programming by making game would be a pretty nice way to learn. The only thing you need is a heavy does of curiosity and then stick with it over the long haul. Learning anything takes time, and you will make a lot of game that you think suck, but stick with it. And before you know it you'll start making games you are proud of that you can share with others. But then keep learning, keep growing, and keep making games. Good luck, you got this!

    • @TwoWayOrbitalStation
      @TwoWayOrbitalStation 21 วันที่ผ่านมา +1

      Just make sure to keep your ideas in check. Don't do what i did and think you can make a mmorpg on your first ever game. Sure i learned some things, but it was not the way to go. Make pong. Like completely finish it, title screen, music etc. Then move on to maybe tetris? then scale from there.
      Just watch some youtube videos on basic programming, like what a variable is, and how to use them.

  • @chaosmachines934
    @chaosmachines934 25 วันที่ผ่านมา

    ho this is so useful

  • @efiritamaradeinyefa1510
    @efiritamaradeinyefa1510 14 วันที่ผ่านมา

    I'd appreciate if you make games and explain things as you go

  • @taylorrathbone5638
    @taylorrathbone5638 6 วันที่ผ่านมา

    I don't really understand the functional difference between enums and arrays/dicts

  • @Spirit-DEV
    @Spirit-DEV หลายเดือนก่อน +1

    Variable exports been there for a while its not new to godot4

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

      this video isn't about the new features of Godot but rather the features that exist in Godot but he found out about them later and he wishes he found out about those features before

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

      I see how I misspoke here, I was referring to the @export_group stuff and all the general changes they made. Those might have been added in Godot 4, or at least improved?

  • @nephew_tom
    @nephew_tom 14 วันที่ผ่านมา

    "To be a game developer who makes YTube videos, not a YTuber who makes games" => Subscribed!
    Let's see if I can get some help from your videos.
    From a "software engineer who wants to be a game developer"
    "Have fun, work hard, make cool games!" - (Not Amazon affiliated)
    😅

    • @Aarimous
      @Aarimous  14 วันที่ผ่านมา

      Good luck on your journey!

  • @FillMakesGames
    @FillMakesGames 28 วันที่ผ่านมา

    This was a helpful video! Thank you!