An open API service indexing awesome lists of open source software.

https://github.com/willnationsdev/deconstructing-godot

A collection of Markdown notes for reading Godot Engine source code
https://github.com/willnationsdev/deconstructing-godot

Last synced: 8 months ago
JSON representation

A collection of Markdown notes for reading Godot Engine source code

Awesome Lists containing this project

README

          

# Deconstructing Godot

A gradual introduction to Godot Engine's source code for those with some GDScript experience and little to no C++ experience. This repository is a complement to a YouTube series available [here](https://www.youtube.com/playlist?list=PLthxCU-NcfYtKogfNjR-6ds73klIOIbWc).

If you would like to suggest a topic, please [open an Issue](https://github.com/willnationsdev/deconstructing-godot/issues/new).

If you are a GDScript user and are uncomfortable with C++, you may want to first [learn C++ using your knowledge of GDScript](gdscript_to_cpp/gdscript_to_cpp.md) (WIP). A supplemental video series on the topic can be found [here]() (TODO).

If you found the content educational, please consider becoming my sponsor using the button above. I spend dozens of hours preparing the lessons through research, write ups, recording videos, and managing the channel. Regardless, it's all worth it if it helps enlighten viewers to the wonders of Godot!

## Topics

This is a tentative ordered list of topics. As lessons progress, it may become necessary to cover additional content within or between topics in order to properly cover the material.

1. [Repository Organization](repo_organization.md)
1. ClassDB and Reflection
1. Object
1. Node and Notifications
1. Scripting
1. Variant
1. Servers and RIDOwner
1. MainLoop, SceneTree, and Node Again
1. Main and Entry Points
1. Loop Iteration
1. Memory Management (`/u/attrezzarturo` on Reddit)
1. Signals (`/u/golddotasksquestions` on Reddit)
1. Viewports (`/u/golddotasksquestions` on Reddit)
1. Input Handling
1. PackedScene and TSCN File Format (`/u/attrezzarturo` on Reddit)
1. Editor
1. EditorPlugins
1. ScriptEditor (`Cologne?` on YouTube)
1. Mutex, Semaphore, and Thread (`/u/G-Brain` on Reddit)
1. GDScript (`Mateusz Kozicki` on YouTube)
1. GodotSharp (`/u/attrezzarturo` on Reddit)
1. Modules and Thirdparty Integration (`/u/Awxen` on Reddit)
1. Finding Issue, Solving, and Submitting PR (`SuperSatanicSaint` on YouTube)