this post was submitted on 21 Jun 2023
26 points (96.4% liked)
Godot
5855 readers
29 users here now
Welcome to the programming.dev Godot community!
This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.
Make sure to follow the Godot CoC while chatting
We have a matrix room that can be used for chatting with other members of the community here
Links
Other Communities
- !inat@programming.dev
- !play_my_game@programming.dev
- !destroy_my_game@programming.dev
- !voxel_dev@programming.dev
- !roguelikedev@programming.dev
- !game_design@programming.dev
- !gamedev@programming.dev
Rules
- Posts need to be in english
- Posts with explicit content must be tagged with nsfw
- We do not condone harassment inside the community as well as trolling or equivalent behaviour
- Do not post illegal materials or post things encouraging actions such as pirating games
We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent
Wormhole
Credits
- The icon is a modified version of the official godot engine logo (changing the colors to a gradient and black background)
- The banner is from Godot Design
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I can add some advice here if that's ok? I'm not a programmer by a long shot, but I do teach basic programming in Python and some coding in HTML and CSS. So I have a little confidence when it comes to learning new coding. I picked up Godot a little while ago, and I'm progressing to the point where I can read code and get a good understanding of what is happening. For a beginner I would recommend the following:
Watch some good quality videos that get you up to speed with Godot - it's not completely logical to an absolute beginner. You have to understand scenes and nodes. You have to understand how the file system works and relates to your game. While watching these videos, follow along until you're comfortable with the interface and moving around it.
Now put some study in. You'll need to read some books / articles / tutorials. Rather than copying code (which is perfectly fine to get used to the programme) try to do the simplest game you can think of. So for me it's a character who can run around the screen. But I want this character to move a little in the style of Mario, so it speeds up and slows down gradually. So I searched on google "Godot how to speed up and slow down gradually" and got a few tips and tricks. But I couldn't quite figure out why certain things were not working. That's where ChatGPT really helped me out. I basically asked it "what's difference between get_action_strength and input.get_vector in Godot". So I had a good understanding of both pieces of code but just couldn't figure out what each was doing. In the end ChatGPT really helped me to understand when to use the different methods. So yes, I say use ChatGPT lots and lots, but not to learn how to use Godot but to help you understand stuff when you get into the programming and you have a little confidence.
As a starter, there are so many channels out there - GDQuest's YouTube channel is fantastic. There's a tiny channel called The Guide Knight who has a style of tutorial I can really relate to. There's also a ton of ebooks out there. To get started here's a free one with some good stuff in it:
https://gamedevacademy.org/free-ebook-godot-game-development/
Good luck, you're only a little ways behind myself in learning Godot - it's a heap of fun!