Garry's Mod Wiki

Entity:PhysicsInitShadow

  boolean Entity:PhysicsInitShadow( boolean allowPhysicsMovement = true, boolean allowPhysicsRotation = true )

Description

Initializes the entity's physics object as a physics shadow. Removes the previous physics object if successful. This is used internally for the Player's and NPC's physics object, and certain HL2 entities such as the crane.

A physics shadow can be used to have static entities that never move by setting both arguments to false.

Clientside physics objects are broken and do not move properly in some cases. Physics objects should only created on the server or you will experience incorrect physgun beam position, prediction issues, and other unexpected behavior.

A workaround is available on the Entity:PhysicsInitConvex page.

Issue Tracker: 5060

Arguments

1 boolean allowPhysicsMovement = true
Whether to allow the physics shadow to move under stress.
2 boolean allowPhysicsRotation = true
Whether to allow the physics shadow to rotate under stress.

Returns

1 boolean
Return true on success, nil otherwise.