Table of Contents

Debugging C++ Code

Visual Studio Debug Visualizers

To ease debugging the C++ code, we provide a natvis file, located at Code/Engine/Foundation/ezEngine.natvis. The file adds improved inspection for EZ specific code, such as the container and string classes.

This file is already referenced by our CMake scripts in the Foundation library and therefore works out of the box.

Debugging the Editor

Please be aware that the editor uses at least one, but potentially multiple child processes for its operation. Everything that is actually 3D rendered, is done by the EditorEngineProcess.exe, which is spawned when the editor opens a project. This makes the editor more resilient. However, it means that if you launch the editor in a debugger, by default breakpoints inside the engine runtime code cannot be hit, as you are not attached to the right process.

You can attach manually to this process. However, it is much easier to use an extension for Visual Studio:

This tool enables Visual Studio to automatically attach to all child processes spawned by the parent process, which makes debugging the EZ editor much easier.

After installing the extension go to Debug > Other Debug Targets > Child Process Debugging Settings.... There you need to enable child process debugging. Additionally, you may want to exclude debugging Git (git.exe) and Visual Studio Code (code.exe), as those may be spawned by the EZ editor (indirectly) and have some annoying behavior when attached to with a debugger:

Child Debug Settings

Hot Reloading C++ Game Code

You can't reload any C++ code at runtime. You can, however, reload the entire engine process in the editor. See this chapter for details.

See Also