Tutorials

Here’s a list of known tutorials.

Butch Teaches Typing

All “Butch Teaches Typing” code can be found here

  • Command Line Setup Starts with an empty project and installs GUT, creates tests, and covers a bunch of command line options all without ever launching the Godot editor.

  • TDD and PONG Episode 1 First in a series of videos implementing Pong using a TDD approach. Starts with an empty project and implements the Ball.

  • TDD and PONG Episode 2 Continues from episode 1. This episode implements the walls and covers some simple doubling, stubbing, and spying.

  • TDD and PONG Episode 3In this episode we make the paddle and make the ball bounce off the paddle. We use some spies to verify calls to methods and verify some random output. Pretty good fun.

  • TDD and PONG Episode IVIn this episode we end up with a working, if not simple, game. Paddles move, scores are kept, and the game ends.

  • In-Editor Gut Panel Features Covers some of the In-Editor Gut Panel features as of 7.3.0

  • Mocking Input Implements double jump in the Godot 2D Platformer by using the InputSender class in some integration tests.