Difference between revisions of "StartScriptProfiling - Debug"
Jump to navigation
Jump to search
(→Notes: Added note concerning a visualizer) |
(→See Also: Added corresponding console command) |
||
Line 31: | Line 31: | ||
*[[Debug Script]] | *[[Debug Script]] | ||
*[[StopScriptProfiling - Debug]] | *[[StopScriptProfiling - Debug]] | ||
*[[StartPapyrusScriptProfile]] (Console Command) |
Latest revision as of 14:59, 22 February 2024
Member of: Debug Script
Starts profiling a single Papyrus script. Child and parent scripts are not profiled. The profile files are stored in "<game folder>/Logs/Script/Profiling". This will also cycle the older profiling logs (so log 0 becomes 1, 1 becomes 2, etc). If the script is already profiled nothing will change. Profiling requests are not saved and will be reset if you load a save game.
Syntax[edit | edit source]
Function StartScriptProfiling(string asScriptName) native global
Parameters[edit | edit source]
- asScriptName: The name of the script to start profiling.
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Starts profiling "MySlowScript"
Debug.StartScriptProfiling("MySlowScript")
Notes[edit | edit source]
Profiling requires the "bEnableProfiling" flag in the "[Papyrus]" section of the ini file to be set to 1. Consoles will never profile in release final builds.
The flamegraph visualizer speedscope supports all kinds of profiles that Skyrim produces, including those produced by this function.
See Also[edit | edit source]
- Debug Script
- StopScriptProfiling - Debug
- StartPapyrusScriptProfile (Console Command)