ShowDebug [Name], by default this will give details about the player pawn/character
ToggleDisplay : disables all HUD
show COLLISION : displays collisions, works in PIE
Rendering commands
FreezeRendering, good to use with ToggleDebugCamera, allows you to see how culling works, with extra stuff like seeing the POV of different steps of rendering (press B)
// example 1, works in constructorIConsoleManager::Get().RegisterConsoleCommand( TEXT("TFC.Debug.DisplayInGamePlayerCharacterWindow"), TEXT("Show data for player"), FConsoleCommandDelegate::CreateWeakLambda(this, [this]() { bDisplayDebugWindow = !bDisplayDebugWindow; }));// example 2 (Northstar)auto& ConsoleManager = IConsoleManager::Get();ConsoleManager.RegisterConsoleCommand( TEXT("CyGlass.ToggleOverlay"), TEXT("Toggle CyGlass overlay."), FConsoleCommandDelegate::CreateUObject(this, &UCyGlassExtensionSubsystem::ToggleCyGlassOverlay)));
About re-registration warning (console commands and vars)
you might get the following warning Console object named 'xxx' already exists but is being registered again, but we weren't expected it to be!
You can totally ignore it if it happens when you hot reload/live code. For more details read the comment above the UE_LOG line