This article's documentation is for anything that uses the Source engine. Click here for more information.

Game ragdoll manager: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
 
(10 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{base point|game_ragdoll_manager}}  
{{LanguageBar}}
 
{{CD|CRagdollManager|file1=ragdoll_manager.cpp}}
==Entity description==
{{This is a|logical entity|name=game_ragdoll_manager}} It is used to control the number of [[ragdoll]]s in the world, if they are flagged to fade (server-side), for performance reasons.
It is used to control the number of [[ragdoll]]s, if they are flagged to fade, (server-side in the world, for performance reasons.
{{Map properties note}}
 
{{CD|C_RagdollManager|base=C_BaseEntity|client=1|file1=1}}
{{map_properties}}


== Keyvalues ==
== Keyvalues ==
{{KV|Max Ragdoll Count|integer|Sets the max number of ragdolls that can be in the world at a time (if they are flagged to fade). Set to -1 if you want to use the default value (g_ragdoll_maxcount).}}
{{KV|Max Ragdoll Count DX8|integer|Sets the max number of ragdolls that can be in the world at a time on DX8 hardware (if they are flagged to fade). Set to -1 if you want to use the 'Max Ragdoll Count' value.}}
{{KV|Save Important Ragdolls|boolean|Should the ragdoll manager make sure ally ragdolls aren't deleted?}}
{{KV Targetname}}
{{KV Targetname}}
{{KV|Max Ragdoll Count|intn=MaxRagdollCount|integer|Sets the max number of ragdolls that can be in the world at a time (if they are flagged to fade). Set to -1 if you want to use the default value (<tt>g_ragdoll_maxcount</tt>).}}
:{{warning|Accepted values range from -32 to 31. Anything over 31 resets back to -32.}}
{{KV|Max Ragdoll Count DX8|intn=MaxRagdollCountDX8|integer|Sets the max number of ragdolls that can be in the world at a time on DX8 hardware (if they are flagged to fade). Set to -1 if you want to use the "Max Ragdoll Count" value.}}
{{KV|Save Important Ragdolls|intn=SaveImportant|boolean|Should the ragdoll manager make sure ally ragdolls aren't deleted?}}


== Inputs ==
== Inputs ==
{{IO|SetMaxRagdollCount|Set the Max Ragdoll Count.|param=integer}}
{{I|SetMaxRagdollCount|Set the Max Ragdoll Count.|param=integer}}
{{warning|Accepted values ranged from -32 to 31. Anything over 31 resets back to -32.}}
{{I|SetMaxRagdollCountDX8|Set the Max Ragdoll Count on DX8 hardware.|param=integer}}
{{IO|SetMaxRagdollCountDX8|Set the Max Ragdoll Count on DX8 hardware.|param=integer}}
{{I Targetname}}


== Outputs ==
{{O Targetname}}


== See also ==
== See also ==
* {{ent|game_gib_manager}}
* [[Physics and Ragdolls]]
* [[Physics and Ragdolls]]
* [[Prop Types Overview]].
* [[Prop Types Overview]].

Latest revision as of 05:19, 29 April 2025

English (en)Translate (Translate)
C++ Class hierarchy
CRagdollManager
CBaseEntity
C++ ragdoll_manager.cpp

game_ragdoll_manager is a logical entity available in all Source Source games. It is used to control the number of ragdolls in the world, if they are flagged to fade (server-side), for performance reasons.

Note.pngNote:The properties of this entity apply to the whole map. Multiple instances of this entity within a map may cause errors.
C++ Class hierarchy (client)
C_RagdollManager
C_BaseEntity
C++ c_ragdoll_manager.cpp

Keyvalues

Name (targetname) <string>[ Edit ]
The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentname or target).
Also displayed in Hammer's 2D views and Entity Report.
See also:  Generic Keyvalues, Inputs and Outputs available to all entities

Max Ragdoll Count (MaxRagdollCount) <integer>
Sets the max number of ragdolls that can be in the world at a time (if they are flagged to fade). Set to -1 if you want to use the default value (g_ragdoll_maxcount).
Warning.pngWarning:Accepted values range from -32 to 31. Anything over 31 resets back to -32.
Max Ragdoll Count DX8 (MaxRagdollCountDX8) <integer>
Sets the max number of ragdolls that can be in the world at a time on DX8 hardware (if they are flagged to fade). Set to -1 if you want to use the "Max Ragdoll Count" value.
Save Important Ragdolls (SaveImportant) <boolean>
Should the ragdoll manager make sure ally ragdolls aren't deleted?

Inputs

SetMaxRagdollCount <integerRedirectInput/integer>
Set the Max Ragdoll Count.
SetMaxRagdollCountDX8 <integerRedirectInput/integer>
Set the Max Ragdoll Count on DX8 hardware.


See also