Difference between revisions of "StopScriptProfiling - Debug"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Rhavlovick
m (1 revision: Clobber re-import by Henning)
 
imported>JLundin
 
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Papyrus]]
[[Category:Non-delayed Native Function]]
'''Member of:''' [[Debug Script]]
'''Member of:''' [[Debug Script]]



Latest revision as of 08:08, 12 September 2012

Member of: Debug Script

Stops profiling a single Papyrus script. Child and parent scripts are not affected. If the script is not being profiled nothing will change.

Syntax[edit | edit source]

Function StopScriptProfiling(string asScriptName) native global

Parameters[edit | edit source]

  • asScriptName: The name of the script to stop profiling.

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Stops profiling "MySlowScript"
Debug.StopScriptProfiling("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.

See Also[edit | edit source]