SetDontMove - Actor
Revision as of 14:26, 5 November 2012 by imported>JLundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Actor Script Flags this actor as "don't move" or not. == Syntax == <source lang="papyrus"> Function SetDontM...")
Member of: Actor Script
Flags this actor as "don't move" or not.
Syntax
Function SetDontMove(bool abDontMove = true) native
Parameters
- abDontMove: Set to limit the actors movement. Don't let this actor be pushed around by another actor.
- Default: True
Return Value
None.
Examples
; Set dragon to stay put and not be pushed around.
Dragon.SetDontMove()
; Clear dragons's "don't move" status
Dragon.SetDontMove(false)