StopStackProfiling - Debug
Revision as of 16:32, 1 December 2015 by imported>Plplecuyer
Member of: Debug Script
Stops profiling a single Papyrus stack.
Syntax[edit | edit source]
Function StopStackProfiling() native global debugOnly
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Lots of slow script here
; Stops profiling this current stack
Debug.StopStackProfiling()
Notes[edit | edit source]
- Profiling requires the "bEnableProfiling" flag in the "[Papyrus]" section of the ini file to be set to 1.
- The profile files are stored in "<documents>/My Games/Fallout4/Logs/Script/Profiling".
- This will also cycle the older profiling logs (so log 0 becomes 1, 1 becomes 2, etc).
- If the stack is not currently profiled nothing will change.