• MonkeMischief@lemmy.today
    link
    fedilink
    arrow-up
    4
    ·
    3 days ago

    GDQuest has this awesome little intro course / program they coded in Godot itself which is pretty rad.

    https://gdquest.itch.io/learn-godot-gdscript

    (Fun trivia: the Godot editor itself…is a Godot program. 🤯)

    Give it a shot and see what you think! :)

    Also of note: KidsCanCode and GameDev.tv are fantastic for beginners as well.

    I’m still quite the awkward newblet with coding, but I’ve been taking GDQuest’s “From Zero” courses and they’re awesome. They’ve had a huge hand in shaping the current engine documentation and stuff too.

    Hope that helps you get started a bit more confidently! :)

    • Derpgon@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      3 days ago

      I love when something is technically written in itself. Look at GCC (C compilator) - it is written in itself (although it was written in Assembly in the beginning). It just feels like a great feedback loop.

      • Malgas@beehaw.org
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        That’s is actually pretty common for programming languages. You first write a minimal compiler in some other language that only implements the features necessary to compile the full version, written in its own language, then you use the full compiler to recompile itself.