bool DebugFootsteps

robot_2Generated
code_blocksInput

Description

The DebugFootsteps field is a boolean flag within the PlayerController class that, when set to true, enables the drawing of debug overlays on footsteps. This can be useful for developers who need to visualize and debug the footstep mechanics of a player character in the game.

Usage

To use the DebugFootsteps field, simply set it to true or false depending on whether you want to enable or disable the debug overlay for footsteps. This can be done within the context of a PlayerController instance.

Example

// Example of enabling debug footsteps
PlayerController playerController = new PlayerController();
playerController.DebugFootsteps = true; // Enable debug overlay for footsteps

// Example of disabling debug footsteps
playerController.DebugFootsteps = false; // Disable debug overlay for footsteps