Resource:Creation Kit > SetAvoidPlayer - Actor
Member of: Resource:Creation Kit/Actor Script
Tells actors whether they need to avoid the player when pathing. (By default, they do, so this does nothing relevant unless the abAvoid parameter is false.)
Created to support scenes where the player is meant to be an incorporeal observer, such as the "memory den" scenes in Fallout 4.
Syntax[edit]
Function SetAvoidPlayer(bool abAvoid = true) native
Parameters[edit]
- abAvoid : Whether to avoid the player when pathing.
- Default: True
Return Value[edit]
None.
Examples[edit]
; Set MemoryDenFigment so that it can follow its path right through the player. MemoryDenFigment.SetAvoidPlayer( false )
Notes[edit]
This relies on the actor having an AI process, and thus will do nothing if used on a disabled actor. If you do need to use this on actors who are initially disabled, you must call it after they have been enabled.
