Background for Skyrim SE
Member of the Actor script
voidfunctionSetDontMove(boolabDontMove=true)Native

Description

Wiki Description

Flags this actor as "don't move" or not.

Documentation Comment

Sets this actor as "don't move" or not


Caveats

CK Wiki - Notes

  • Using SetDontMove on the player disables player movement, camera switching, and camera rotating, but keeps the full HUD displayed (unlike Game.DisablePlayerControls(...)).

Parameters

boolabDontMove=true

CK Wiki Description

Set to limit the actors movement. Don't let this actor be pushed around by another actor.

  • Default:True

Examples

; Set dragon to stay put and not be pushed around.
Dragon.SetDontMove()
; Clear dragons's "don't move" status
Dragon.SetDontMove(false)

Auto-Generated Example

bool myBool__abDontMove

myActor__toCallFunctionOn.SetDontMove(myBool__abDontMove)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.