Description
The DebugFootsteps
field is a boolean value 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 footsteps of a player character within the game environment.
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 PlayerController
class or any derived class.
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