Programming style guides
Lastly, I would like to go over what programming style guides are. These are guides that tell you how to structure your code. These guides never say anything about the content of the code but more about how to style it.
You can compare these guides to the style of this book. I could put all the sentences in one long line without styling, headers, or images. But in the end, this would make the content very hard to comprehend.
Next to making code more readable, these style guides also get whole teams of coders on one line, so each person’s code looks more alike and people don’t have to keep switching between different coding styles when trying to comprehend the code base of a project.
Most companies have their internal style guide, and yes, there is an official GDScript style guide! You can read it over here: https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/gdscript_styleguide.html.
I don’t recommend you read...