Difference between revisions of "StopObjectProfiling - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Tunaisafish
m (→‎Syntax: -global)
imported>JLundin
 
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Papyrus]]
[[Category:Non-delayed Native Function]]
'''Member of:''' [[Form Script]], [[Alias Script]], [[ActiveMagicEffect Script]]
'''Member of:''' [[Form Script]], [[Alias Script]], [[ActiveMagicEffect Script]]



Latest revision as of 08:00, 12 September 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[edit | edit source]

Function StopObjectProfiling() native

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

None.

Notes[edit | edit source]

Profiling requires the "bEnableProfiling" flag in the "[Papyrus]" section of the ini file to be set to 1.

Examples[edit | edit source]

; Stops profiling the slow object
SlowObject.StopObjectProfiling()

See Also[edit | edit source]