-
Notifications
You must be signed in to change notification settings - Fork 0
Commands
Can Cellek edited this page Sep 11, 2023
·
2 revisions
In order to start profiling, you should either
- Use PIE mode and activate console from
~
key. - Use Standalone mode and activate console from
~
key.
// Switches to next profiling camera (if available and active on profiling)
cp.next
// Switches to previous profiling camera (if available and active on profiling)
cp.prev
// Captures frame using RenderDoc
cp.start.renderdoc
// Captures frames from all profiling cameras using RenderDoc
cp.batch.renderdoc
// You can optionally add an argument to define how many frames to capture.
// Defaults to the value set in settings
cp.start.renderdoc 2
cp.batch.renderdoc 2
// Captures frame using UE Insights
cp.start.trace
// Captures frame using UE Insights
cp.start.snapshot
// Captures frames from all profiling cameras using UE Insights trace
cp.batch.trace
// Captures frames from all profiling cameras using UE Insights snapshot
cp.batch.snapshot
// You can optionally add an argument to define how many seconds to trace
// Defaults to the value set in settings. Works only on trace
cp.start.trace 2
cp.batch.trace 2