PathToReference - Actor
Revision as of 13:54, 11 November 2011 by imported>Scornett (Reverted edits by Scornett-Bot (talk) to last revision by Rhavlovick)
Member of: Actor Script
Makes the actor path to the target reference at a given speed.
Syntax
bool Function PathToReference(ObjectReference aTarget, float afWalkRunPercent) native
Parameters
- aTarget: The target reference to path to.
- afWalkRunPercent: The speed to move with, as a percentage of the walk/run speeds (valid range 0 -> 1)
Return Value
Whether the actor completed the path. Reasons for failure include:
- Not being able to build a path to the target
- The path being interrupted by another path request (possibly from AI/Package code)
- The speed parameter isn't in the valid range 0->1
Examples
; Make actor path to the player at half speed
Bob.PathToReference(Game.GetPlayer(), 0.5)
Notes
- This function is latent. It will suspend the script's execution until the path is either complete or failed/was interrupted.