ClientsideRagdoll
Description
Creates a fully clientside ragdoll.
The ragdoll initially starts as hidden and with shadows disabled, see the example for how to enable it.
There's no need to call Entity:Spawn on this entity.
The physics won't initialize at all if the model hasn't been precached serverside first.
Clientside entities are not garbage-collected, thus you must store a reference to the object and call CSEnt:Remove manually.
Issue Tracker: 1387
Issue Tracker: 1387
Arguments
1 string model
The file path to the model.
Model must be precached with util.PrecacheModel on the server before usage.
Returns
Example
Creates a new ragdoll with the player model of breen and enables rendering and shadows.
local ragdoll = ClientsideRagdoll( "models/player/breen.mdl" )
ragdoll:SetNoDraw( false )
ragdoll:DrawShadow( true )