Godot 4 is here!
Thankyou all!
It has been a tremendously busy year for me, learning everything I could about Godot 4 and starting my solo career producing educational content.
I am thrilled to announce that after using Godot 4 through its Alpha, Beta, and Release, the engine is now fully released with its first stable version.
You can read all about it at the official blog post.
In fact, it is SO released that the official docs and download page refer to Godot 4 rather than Godot 3.5.
Lessons from a year in Godot
To celebrate Godot 4 officially releasing, I have put out a new video listing the most impactful changes for me coming from Godot 3 to Godot 4.
I discuss the features that affect my day to day gamedev life the most, and what hurdles I had with the transition.
Additionally, the course is going to be half price for the next two weeks, to encourage as many people as possible to dive into Godot 4.
Using Godot 4 stable
Godot 4 Beginners now supports Godot 4 stable so you can try out the exciting engine with a large project right now!
Thanks for reading, and see you in the next one 🥳
Get Godot 4 Beginners
Godot 4 Beginners
The essential course to get started in the cutting edge Godot 4.
Status | In development |
Category | Tool |
Author | Bramwell |
Genre | Educational |
Tags | Game engine, godot-4, guide, sourcecode, Tutorial |
More posts
- Godot 4.3 and Physics49 days ago
- Wrapping up the NavigationServerFeb 12, 2024
- Navigation NewsJan 11, 2024
- Volumetric Fog and God RaysSep 12, 2023
- Adding Videos: How to make a 3D PlatfomerJul 25, 2023
- The big 4.1 update!Jul 06, 2023
- Checkpoints, Objectives, Particles, and the RoadmapMay 10, 2023
- Collectibles and AnimationsMar 13, 2023
- Making a Platformer in Release Candidate 6Feb 27, 2023
Comments
Log in with itch.io to leave a comment.
soooo i couldn’t find any link to feedback/bugreports/etc, just a heads up, in
04-Making-A-Basic-3D-Platformer-v0.4.0/03-Camera-Controls.html
, section “Creating node variables” you claim:which is factually wrong and might confuse a bunch of people without that prior knowledge, might wanna fix that.
@onready
indicates that the variable assignment has to happen between_init
and_ready
. we have to indicate that due to the node being in the scene tree, but that’s not “what that indicates” (and especially in a beginner course you wanna be suuuuper careful about claims like “@onready
tells it that this is a node”, plenty gdscript newbies already have issues wrapping their head around the Object inheritance vs Scene trees and “optional typing”).I would instead write something along:
Note also how the “variable being defined” isn’t in the scene tree at all (again, careful when it comes to terminology in a beginner’s tutorial, the variable “is” most definitely both “being declared” and residing “in” the script class, the value you assign to it however is a Node that’s not available at compiletime.)
Heya, thanks for the feedback - the discord server is the best place for support and feedback.
I think you're right and I can word that more helpfully, it is difficult to strike a balance between providing accurate information and not distracting beginners with stuff that isn't immediately relevant and this leans too far the wrong way (Especially me saying it is a Node which is straight up wrong) - I do like your recommendation though and will make the following change:
If you have any more thoughts please do chat with me on the server, I'm always happy to hear ways to improve the course for everyone 😃
wowzies