bool StepDebug { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The StepDebug property is a boolean value that, when set to true, enables debug overlays for the character. This can be useful for developers who need to visualize and debug the character's movement and interactions within the game environment.

Usage

To enable debug overlays for a character, set the StepDebug property to true. This will activate visual debugging aids that can help in understanding the character's behavior and interactions.

Example

// Example of enabling StepDebug for a PlayerController instance
PlayerController playerController = new PlayerController();
playerController.StepDebug = true; // Enable debug overlays for this character