Godot Engine
Rules
About
Featured Projects
Toggle forum theme
Sign Up
Log In
Tutorials
Share your instructions and ideas on how to better use the Godot Engine.
Latest engine news:
Start a Discussion
Tutorials
All Discussions
Tags
Forum News
Projects
Resources
Tutorials
Godot Help
Business
Community
Professional Trade
Non-Godot Projects
Godot 4.X
Godot 3.X
Free
More...
Relevance
Relevance
Latest
Top
Newest
Oldest
Make BEAUTIFUL Games - Lighting in Godot
Tutorials
Not a sponsor, but i remember some including me had questions on lighting and how to make it look good in bideo games. It answers most of the question i had except one - if yo...
0
0 replies
How to customize a ColorPickerButton (to make colors selectable with a keyboard or controller)
Tutorials
This is something easy to implement, but kind of convoluted to figure out. I went digging because the ColorPicker's default focus_mode settings don't allow it to behave the wa...
5
5 replies
Using proguard-rules.pro in your android project
Tutorials
Godot 4.X
Stable
Hi everyone I am sharing my experience with getting proguard to work with my project. Hope this may help someone. Without the proguard rules file the addons I am using in my p...
1
1 reply
A
Tutorial's for making isometric game asset's
Tutorials
video's for making isometric game assets. Edit: I will post my further videos in this thread so that any corrections I make can be in one place must be noted I set this up wro...
6
6 replies
R
Do I need to download plugins for Android Studio?
Tutorials
Godot 4.X
I've downloaded the necessary files for exporting to Android according to the manual provided by Godot. But I have a question: is it also essential to download a plugin to exp...
1
1 reply
One-click 3D model to 2D sprite in Godot 4.4 (tutorial)
Tutorials
Godot 4.X
Free
Stable
Godot 4.4 introduced a new annotation, @export_tool_button, which allows you to add a button to the Inspector and link executable code to it. In this video, I demonstrate one ...
0
0 replies
A book on Godot 4 is here! Learn to create a 2.5D shooter from scratch.
Tutorials
Godot 4.X
Stable
Would you like to explore the world of game development and embark on the journey of crafting your own computer game? This hands-on guide provides you with the chance to acqui...
13
13 replies
Displaying the last git commit info
Tutorials
Godot 4.X
I learned a new trick. These instructions are for Linux. Modifications may be needed on Windows or Mac. Add this post-commit script to the .git/hooks subfolder of a Godot proj...
0
0 replies
P
Drag and Drop walkthrough / overview for Godot 4.x
Tutorials
Hey! I was working on an inventory system, and implemented a drag and drop system. Since while working on it I couldn't find many up to date resources on how drag and drop wor...
1
1 reply
This is how to use AnimationTree State Machine transitions with expressions
Tutorials
Godot 4.X
So, this will be a quick tutorial on how to use the Expression field in State Machine transitions. It is an incredibly powerful tool, but the knowledge on how to use it is mis...
1
1 reply
M
Sky Shader for Toon & Stylized look
Tutorials
Godot 4.X
Free
Stable
Hello everyone. I am sharing my work on sky shader for Godot 4. Its parameters can be tweaked to make it look toon and stylized. EDIT: it is based on a shadertoy project, and ...
1
1 reply
M
My tutorial on infinite procedurally generated map for top-down game
Tutorials
Godot 4.X
Free
Stable
Hello everyone. As part of my RTS series, I created a procedurally generated terrain tutorial that allows you to create a map for your top-down game. If you find my tutorials ...
1
1 reply
C
Maze Generation: A (nearly) Stateless Implementation of Eller's Algorithm
Tutorials
GDScript
Godot 3.X
Hello everyone, Eller's Algorithm is an algorithm for generating mazes. Here's what it looks like: The way it works is it walks down the maze, one row at a time, sorting cells...
1
1 reply
The sequel is out! More shaders in Godot 4
Tutorials
Godot 4.X
I have just finished and released the sequel to the book "Shaders in Godot 4". The new book is titled More shaders in Godot 4. The book is a comprehensive guide on creating 33...
2
2 replies
Rendering Issue about Converting GLTF Material Textures
Tutorials
Godot 4.X
Free
I'm new to godot-cpp and I'm encountering a rendering issue after converting GLTF material textures to StandardMaterial3D and Texture in my project. Specifically, the textures...
5
5 replies
(Solved)Triangle Mesh Not Rendering with Programmatically Generated Texture
Tutorials
Godot 4.X
Free
Hello everyone, I am encountering an issue where a triangle mesh created in Godot-cpp 4.2 is not rendering with a programmatically generated texture. I have followed the steps...
2
2 replies
M
How to make Grappling Hook tutorial
Tutorials
Godot 4.X
Free
Stable
I wrote a grappling hook tutorial. In this tutorial, we learn to use pin joint (PintJoint2D node) to make a link between a static node in the scene and a moving node. It forms...
0
0 replies
L
How to limit what goes into a text edit prompt in GDscript...
Tutorials
Godot 4.X
If you are looking to make a textedit box that controls something that requires to be of a specific range of values, like an integer between 30 and 165 for the in game fps lim...
2
2 replies
Undo/Redo and tool scripts
Tutorials
I'm seeing people getting severely confused with engine's undo functionality in conjunction with tool scripts, so here's a mini tutorial that'll hopefully clarify how things w...
43
43 replies
S
Dodge the creeps: How to connect the start_game signal to the new_game() function in the main scene?
Tutorials
For those who are familiar, I'm nearing the end of the Dodge The Creeps tutorial in the "Your first game" section of the Godot docs. I've checked over all of my code and every...
10
10 replies
Load More
Loading...
This site is best viewed in a modern browser with JavaScript enabled.
Something went wrong while trying to load the full version of this site. Try hard-refreshing this page to fix the error.
Tutorials
Share your instructions and ideas on how to better use the Godot Engine.
Make BEAUTIFUL Games - Lighting in Godot
How to customize a ColorPickerButton (to make colors selectable with a keyboard or controller)
Using proguard-rules.pro in your android project
Tutorial's for making isometric game asset's
Do I need to download plugins for Android Studio?
One-click 3D model to 2D sprite in Godot 4.4 (tutorial)
A book on Godot 4 is here! Learn to create a 2.5D shooter from scratch.
Displaying the last git commit info
Drag and Drop walkthrough / overview for Godot 4.x
This is how to use AnimationTree State Machine transitions with expressions
Sky Shader for Toon & Stylized look
My tutorial on infinite procedurally generated map for top-down game
Maze Generation: A (nearly) Stateless Implementation of Eller's Algorithm
The sequel is out! More shaders in Godot 4
Rendering Issue about Converting GLTF Material Textures
(Solved)Triangle Mesh Not Rendering with Programmatically Generated Texture
How to make Grappling Hook tutorial
How to limit what goes into a text edit prompt in GDscript...
Undo/Redo and tool scripts
Dodge the creeps: How to connect the start_game signal to the new_game() function in the main scene?
Next Page »