The tutorials are designed to stand on their own, but working through them in the order that they appear is recommended. Specifically, the render loop tutorial goes through the basics of projects and setting up a compiler options XML file. Thereafter the tutorials only include a list of steps for setting up the project. (Both IntelliDoc and the compiler use the options XML file. Ginjo-Builder looks for an XML file that has the same name as the top level tree node in the project tree. The XML file specifies the startup function as well as other compiler options. A project cannot be run without an XML file.) The presented code files and media files are installed along with Ginjo-Builder and can be accessed from the 'Project' window that is shown when the editor starts:
The tutorials are deliberately very short and concentrate on accomplishing a single task. For example, the lights tutorial covers the various types of lighting, but lighting is not used in any other tutorial. As such you will regularly see the following type of code for setting the Lighting material flag of a model or material:
Warrior.SetMaterialFlag(gb.video.MaterialFlag.Lighting, false)
The cameras tutorial introduces the FPS and Maya cameras, which handle user input internally. The Maya camera is used in subsequent tutorials to allow for basic input response: It is controlled by holding down a mouse button while moving the mouse. Hold down the right mouse button to move sideways/up/down; hold down the left mouse button to rotate; hold down the center mouse button (or mouse wheel) and move your mouse to zoom in and out. User input and event handling is covered in the mouse & keyboard tutorial. Combining it with the frame rate independent updates introduced in the movement/animators tutorial is straight forward.
Note that error checking is omitted for the most part in order to reduce code length. However, in production code you should check the return values of functions.