SetDontMove - Actor

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script (Requires 1.8)

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

Syntax[edit | edit source]

Function SetDontMove(bool abDontMove = true) native

Parameters[edit | edit source]

  • abDontMove: Set to limit the actors movement. Don't let this actor be pushed around by another actor.
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Set dragon to stay put and not be pushed around.
Dragon.SetDontMove()


; Clear dragons's "don't move" status
Dragon.SetDontMove(false)

Notes[edit | edit source]

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

See Also[edit | edit source]