Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kidscancode/godot3_procgen_demos
Exploring Procedural Generation algorithms in Godot
https://github.com/kidscancode/godot3_procgen_demos
algorithms game-development gamedev godot godot-engine godot-game-engine godot3 godotengine learning pcg procedural-generation procgen tutorial
Last synced: about 1 month ago
JSON representation
Exploring Procedural Generation algorithms in Godot
- Host: GitHub
- URL: https://github.com/kidscancode/godot3_procgen_demos
- Owner: kidscancode
- License: mit
- Created: 2018-08-26T22:40:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-12T17:16:40.000Z (over 4 years ago)
- Last Synced: 2024-09-29T05:45:48.143Z (about 1 month ago)
- Topics: algorithms, game-development, gamedev, godot, godot-engine, godot-game-engine, godot3, godotengine, learning, pcg, procedural-generation, procgen, tutorial
- Language: GDScript
- Homepage:
- Size: 438 KB
- Stars: 152
- Watchers: 12
- Forks: 36
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Procedural Generation in Godot
In this series, we’ll explore the applications of procedural generation to game development. While we’ll be using Godot 3.0 as our platform, much of the concepts and algorithms related to this subject are universal, and you can apply them to whatever platform you may be working on.
## Part 01: Mazes
Generating a random maze using the Recursive Backtracker algorithm and Godot's TileMap node.
![alt](http://kidscancode.org/blog/img/maze_gen1.gif)
- Text: http://kidscancode.org/blog/2018/08/godot3_procgen1/
- Video: https://youtu.be/YShYWaGF3Nc## Part 02: Using Mazes
Additions and modifications to the maze generator from Part 1.
- Text: http://kidscancode.org/blog/2018/09/godot3_procgen2/
- Video: https://youtu.be/qkiyzjTqm9o## Part 03: Tile-based Infinite Worlds
Generating a random tile-based map as you explore it.
- Text: http://kidscancode.org/blog/2018/09/godot3_procgen3/
- Video: https://youtu.be/lc34v8pjTXk