GetActorProcessingLevel

From the Fallout3 GECK Wiki
Revision as of 01:24, 2 October 2015 by imported>Jazzisparis (Created page with "{{Function |origin = JIP |summary = Returns the current AI/script processing-level of the calling actor. The returned value ranges from 0 to 3: *'''0 (High):''' The actor is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Returns the current AI/script processing-level of the calling actor. The returned value ranges from 0 to 3:

  • 0 (High): The actor is processed every frame.
  • 1 (Mid-High): The actor is processed every ~18 seconds.
  • 2 (Mid-Low): Unknown at this time.
  • 3 (Low): The actor is processed every ~120 seconds.

Syntax

[help]
(processingLvl:int) reference.GetActorProcessingLevel

Example

set iProcLevel to actorRef.GetActorProcessingLevel

See Also