Difference between revisions of "StopObjectProfiling - Form"
Jump to navigation
Jump to search
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
imported>Tunaisafish m (→Syntax: -global) |
||
Line 7: | Line 7: | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Function StopObjectProfiling() native | Function StopObjectProfiling() native | ||
</source> | </source> | ||
Revision as of 10:43, 28 March 2012
Member of: Form Script, Alias Script, ActiveMagicEffect Script
Stops profiling all scripts attached to this object until stopped. The profile files are stored in "<documents>/My Games/Skyrim/Logs/Script/Profiling". This will also cycle the older profiling logs (so log 0 becomes 1, 1 becomes 2, etc). If the object is not already profiled nothing will change.
Syntax
Function StopObjectProfiling() native
Parameters
None.
Return Value
None.
Notes
Profiling requires the "bEnableProfiling" flag in the "[Papyrus]" section of the ini file to be set to 1.
Examples
; Stops profiling the slow object
SlowObject.StopObjectProfiling()