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)