Short Post Tag: godot snippets
-
Make Paths Smooth Using Path Simplification
My A-star path finding implementation gives a list of points for my RTS game…
-
Making Godot Third Person Camera Controller
In plenty of my games, I have to make a third person camera, especially…
-
Changing scene in Godot
GDscript provides get_tree().change_scene_to_file(filepath) but we cannot pass data this way. So another way I…