Blob element: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(.)
(updates)
Line 1: Line 1:
{{lang|Blob element}}
{{ent not in fgd}}
{{ent not in fgd}}
{{hl2 point|blob_element}} These are normally created and managed by an {{ent|npc_blob}}. See that page for more information.
{{hl2 point|blob_element}} These are normally created and managed by an {{ent|npc_blob}}. A creative mind may still find a use for this on its own. One potential use is as a model entity, due to being somewhat less expensive. This entity alone has no AI.
 
{{code class|CBlobElement|npc_blob.cpp}}
 
==FGD Code==
Paste these all into <code>halflife2.fgd</code>. FGD code is not required, but makes it easier to use the entity. (If anything is wrong, tell [[User talk:Pinsplash|Pinsplash]].)
 
blob_element point class (intended for HL2):
{{ExpandBox|
<pre>
@PointClass base(BaseEntityHL2only,BaseAnimatingHL2Only) = blob_element : "A blob particle usually created through npc_blob."
[
]
</pre>
}}
 
BaseEntityHL2only base class (accurate to all source games up until L4D):
{{ExpandBox|
<pre>
@BaseClass = BaseEntityHL2Only
[
        targetname(target_source) : "Name" : : "The name that other entities refer to this entity by."
        globalname(string) : "Global Entity Name" : "" : "Name by which this entity is linked to another entity in a different map. When the player transitions to a new map, entities in the new map with globalnames matching entities in the previous map will have the previous map's state copied over their state."
        parentname(target_destination) : "Parent" : : "The name of this entity's parent in the movement hierarchy. Entities with parents move with their parent."
        origin(origin) : "Origin (X Y Z)" : : "The position of this entity's center in the world. Rotating entities typically rotate around their origin."
        angles(angle) : "Pitch Yaw Roll (Y Z X)" : "0 0 0" : "This entity's orientation in the world. Pitch is rotation around the Y axis, " +
        "yaw is the rotation around the Z axis, roll is the rotation around the X axis."
        ResponseContext(string) : "Response Contexts" : "" : "Response system context(s) for this entity. Format should be: 'key:value,key2:value2,etc'. When this entity speaks, the list of keys & values will be passed to the response rules system."
        effects(integer) : "Effects" : : "Combination of effect flags to use."
        ltime(float) : "Local Time" : : "The local time of the entity, independent of the global clock. Used mainly for physics calculations."
        nextthink(float) : "Next Think" : : "Amount of time before the entity thinks again. See the Thinking page on the wiki."
        hammerid(integer) : "Hammer ID" : : "The entity's Hammer ID. Mainly used by plugins and debugging commands, such as ent_keyvalue. Can be manually assigned."
 
 
        input Kill(void) : "Removes this entity from the world."
        input KillHierarchy(void) : "Removes this entity and all its children from the world."
        input SetParent(string) : "Changes the entity's parent in the movement hierarchy."
        input SetParentAttachment(string) : "Change this entity to attach to a specific attachment point on its parent. Entities must be parented before being sent this input. The parameter passed in should be the name of the attachment."
        input SetParentAttachmentMaintainOffset(string) : "Change this entity to attach to a specific attachment point on it's parent. Entities must be parented before being sent this input. The parameter passed in should be the name of the attachment. The entity will maintain it's position relative to the parent at the time it is attached."
        input ClearParent(void) : "Removes this entity from the the movement hierarchy, leaving it free to move independently."
        input AddOutput(string) : "Adds an entity I/O connection to this entity. Format: <output name> <targetname>:<inputname>:<parameter>:<delay>:<max times to fire (-1 == infinite)>. Very dangerous, use with care."
        input FireUser1(void) : "Causes this entity's OnUser1 output to be fired."
        input FireUser2(void) : "Causes this entity's OnUser2 output to be fired."
        input FireUser3(void) : "Causes this entity's OnUser3 output to be fired."
        input FireUser4(void) : "Causes this entity's OnUser4 output to be fired."
        input Use(void) : "Same as a player invoking +use; may not do anything. Can also be invoked by creating an output that does not specify an input."
        input DispatchEffect(string) : "Dispatches a special effect from the entity's origin. This input has been removed in versions of Source since Left 4 Dead, as it was rendered obsolete by particles."
        input DispatchResponse(string) : "Dispatches a response to the entity. See the Response page and Concept page on the wiki."
        input AddContext(string) : "Adds to the entity's list of response contexts. Format is <key>:<value>. See the Response System page on the wiki."
        input RemoveContext(string) : "Remove a context from this entity's list. The name should match the key of an existing context."
        input ClearContext(string) : "Removes all contexts from this entity's list."
 
 
        output OnUser1(void) : "Fired in response to FireUser1 input."
        output OnUser2(void) : "Fired in response to FireUser2 input."
        output OnUser3(void) : "Fired in response to FireUser3 input."
        output OnUser4(void) : "Fired in response to FireUser4 input."
]
</pre>
}}
 
BaseAnimatingHL2Only base class (accurate for all source games until L4D2):
{{ExpandBox|
<pre>
@BaseClass = BaseAnimatingHL2Only
[
        model(studio) : "World Model" : : "This MAY not work for blob_element. If not, see npc_blob_use_model."
        skin(integer) : "Skin" : 0 : "Some models have multiple versions of their textures, called skins. Set this to a number other than 0 to use that skin instead of the default."
        solid(choices) : "Collisions" : 0 =
        [
                0: "Not Solid"
                1: "BSP (QPhysics)"
                2: "Use Bounding Box"
                3: "Oriented Bounding Box"
                4: "Oriented Bounding Box, constrained to Yaw only"
                5: "Custom/Test"
                6: "Use VPhysics"
        ]
        SetBodyGroup(integer) : "Body Group" : : "Sets the the active $bodygroup."
        hitboxset(string) : "Hitbox Set" : : "Sets the $hboxset to use."
        sequence(integer) : "Sequence" : : "Default animation sequence for the model to be playing after spawning."
        playbackrate(float) : "Playback Rate" : 1 : "A multiplier of the framerate at which animations are played. Negative values are accepted."
        cycle(float) : "Cycle" : : "The current frame of the currently playing animation, on a range from 0-1."
        LightingOrigin(target_destination) : "Lighting Origin" : : "Select an entity (not info_lighting!) from which to sample lighting instead of the entity's origin."
        LightingOriginHack(target_destination) : "Lighting Origin Offset" : : "The info_lighting_relative from which to sample lighting instead of the entity's origin."
        damagefilter(target_destination) : "Damage Filter" : "" : "Name of the filter entity that controls which entities can damage us."
        fademindist(float) : "Start Fade Dist" : -1 : "Distance at which the prop starts to fade (<0 = use fademaxdist). If 'Screen Space Fade' is selected, this represents the number of pixels wide covered by the prop when it starts to fade."
        fademaxdist(float) : "End Fade Dist" : 0 : "Maximum distance at which the prop is visible (0 = don't fade out). If 'Screen Space Fade' is selected, this represents the *minimum* number of pixels wide covered by the prop when it fades."
        fadescale(float) : "Fade Scale" : 1 : "If you specify a fade in the worldspawn, or if the engine is running under dx7 [hl2/ep1/portal] or dx8 [ep2/tf], then the engine will forcibly fade out props even if fademindist/fademaxdist isn't specified." + " This scale factor gives you some control over the fade. Using 0 here turns off the forcible fades." + " Numbers smaller than 1 cause the prop to fade out at further distances, and greater than 1 cause it to fade out at closer distances."
        rendermode(choices) : "Render Mode" : 0 : "Used to set a non-standard rendering mode on this entity. See also 'FX Amount' and 'FX Color'." =
        [
                0: "Normal"
                1: "Color"
                2: "Texture"
                3: "Glow"
                4: "Solid"
                5: "Additive"
                6: "Number 6. Does nothing without custom code."
                7: "Additive Fractional Frame"
                8: "Alpha Add"
                9: "World Space Glow"
                10: "Invisible (polygons are still drawn)"
        ]
        renderamt(integer) : "FX Amount (0 - 255)" : 255 : "The FX amount is used by the selected Render Mode."
        rendercolor(color255) : "FX Color (R G B)" : "255 255 255" : "The FX color is used by the selected Render Mode."
        renderfx(choices) :"Render FX" : 0 =
        [
                0: "Normal"
                1: "Slow Pulse"
                2: "Fast Pulse"
                3: "Slow Wide Pulse"
                4: "Fast Wide Pulse"
                5: "Slow Fade Away"
                6: "Fast Fade Away"
                7: "Slow Become Solid"
                8: "Fast Become Solid"
                9: "Slow Strobe"
                10: "Fast Strobe"
                11: "Faster Strobe"
                12: "Slow Flicker"
                13: "Fast Flicker"
                14: "Constant Glow"
                15: "Distort"
                16: "Hologram (Distort + fade)"
                17: "Scale Up (May not be in HL2?)"
                18: "Unknown"
                19: "Unknown"
                20: "Unknown"
                21: "Unknown"
                22: "Spotlight FX (May not be in HL2?)"
                23: "Cull By Distance (TEST)"
                24: "Spotlight FX"
                26: "Fade Near"
        ]
        shadowcastdist(integer) : "Shadow Cast Distance" : 0 : "Use this to override how far this object casts shadows. 0 = default distance."
        disableshadows(choices) : "Disable Shadow Casting" : 0 =
        [
                0 : "No"
                1 : "Yes"
        ]
        disablereceiveshadows(choices) : "Disable Receiving Shadows" : 0 =
        [
                0 : "No"
                1 : "Yes"
        ]
        modelindex(integer) : "Model Index" : : "Changes the entitiy's model to a precached model on the map. Warning: Using an invalid value will instantly crash the game, this includes 0 and 1."
        modelscale(float) : "Model Scale" : 1 : "A multiplier for the size of the model. Negative values are accepted. Does not alter the physics collisions in most cases, however. Warning: Negative or extremely high values can cause crashes!"
 
 
        input skin(integer) : "Selects a skin from the model's index, starting with 0."
        input SetBodyGroup(integer) : "Sets the the active $bodygroup."
        input Ignite(void) : "Ignite, burst into flames"
        input IgniteLifetime(float) : "Ignite, with a parameter lifetime."
        input IgniteNumHitboxFires(integer) : "Ignite, with a parameter number of hitbox fires."
        input IgniteHitboxFireScale(float) : "Ignite, with a parameter hitbox fire scale."
        input BecomeRagdoll(void) : "Kills the entity and creates a client-side ragdoll from the model. Input is only passed if the model contains $collisionjoints, for other models phys_convert can be used instead."
        input SetLightingOrigin(target_destination) : "Sets the entity's lighting origin to an info_lighting."
        input SetLightingOriginHack(target_destination) : "Offsets the entity's lighting origin by their distance from an info_lighting_relative."
        input fademindist(float) : "Sets distance at which the entity starts fading. If <0, the entity will disappear instantly when end fade is hit. The value will scale appropriately if the entity is in a 3D Skybox."
        input fademaxdist(float) : "Sets distance at which the entity ends fading. If <0, the entity won't disappear at all. The value will scale appropriately if the entity is in a 3D Skybox."
        input SetModelScale(vector) : "Multiplies the size of the model. Does not alter the physics collisions in most cases, however. Negative values are accepted. Takes two values separated by a space. The first is the target model scale. The second value is the number of seconds the change in scale will be spread over. Warning: Negative or extremely high values can cause crashes!"
        input Alpha(integer) : "Sets the entity's transparency to a number from 0 (invisible) to 255 (fully visible). Requires the entity to have its Render Mode (rendermode) set to a number other than 0."
        input AlternativeSorting(integer) : "Swaps the rendering order of the entity. Used to attempt to fix sorting problems when rendering, for example an object rendering in front of translucent materials."
        input Color(color255) : "Sets an RGB color for the entity."
        input SetDamageFilter(target_destination) : "Sets a filter for this entity for when it receives damage."
        input EnableDamageForces(void) : "Allows the entity to be pushed by damage done to it (usually force amount correlates with the damage done)."
        input DisableDamageForces(void) : "Prevents the entity from being pushed by damage done to it."
        input EnableShadow(void) : "Allows the entity to draw a render target shadow."
        input DisableShadow(void) : "Prevents the entity from drawing a render target shadow."
 
 
        output OnIgnite(void) : "Fired when the entity catches fire, such as from an env_entity_igniter or the Ignite inputs."
]
</pre>
}}
 
==ConVars/Commands==
{{varcom|start}}
{{varcom|npc_blob_use_model|2|Arbitrary number|Chooses which model to show <code>blob_element</code>s as. {{restart}}
:0. <code>gibs/agibs.mdl</code> (skull)
:1. <code>props_junk/watermelon01.mdl</code> (watermelon)
:2. <code>w_squeak.mdl</code> ([[snark]] (not in final game, shows error model))
:3. <code>baby_headcrab.mdl</code> ([[baby headcrab]] (not in final game, shows error model))}}
{{varcom|end}}
 
==Keyvalues==
{{KV BaseAnimating|base=1}}
{{KV BaseEntity|base=1}}
 
==Inputs==
{{I BaseAnimating|base=1}}
{{I BaseEntity|base=1}}
 
==Outputs==
{{O BaseAnimating}}
{{O BaseEntity}}

Revision as of 15:05, 5 September 2018

English (en)Translate (Translate)
Icon-NotInFGD.png
This entity is not in the FGD by default.
See below for instructions on making it available.

Template:Hl2 point These are normally created and managed by an npc_blob. A creative mind may still find a use for this on its own. One potential use is as a model entity, due to being somewhat less expensive. This entity alone has no AI.

C++ In code, it is represented by theCBlobElementclass, defined in thenpc_blob.cppfile.

FGD Code

Paste these all into halflife2.fgd. FGD code is not required, but makes it easier to use the entity. (If anything is wrong, tell Pinsplash.)

blob_element point class (intended for HL2):


@PointClass base(BaseEntityHL2only,BaseAnimatingHL2Only) = blob_element : "A blob particle usually created through npc_blob."
[
]

BaseEntityHL2only base class (accurate to all source games up until L4D):


@BaseClass = BaseEntityHL2Only
[
        targetname(target_source) : "Name" : : "The name that other entities refer to this entity by."
        globalname(string) : "Global Entity Name" : "" : "Name by which this entity is linked to another entity in a different map. When the player transitions to a new map, entities in the new map with globalnames matching entities in the previous map will have the previous map's state copied over their state."
        parentname(target_destination) : "Parent" : : "The name of this entity's parent in the movement hierarchy. Entities with parents move with their parent."
        origin(origin) : "Origin (X Y Z)" : : "The position of this entity's center in the world. Rotating entities typically rotate around their origin."
        angles(angle) : "Pitch Yaw Roll (Y Z X)" : "0 0 0" : "This entity's orientation in the world. Pitch is rotation around the Y axis, " +
        "yaw is the rotation around the Z axis, roll is the rotation around the X axis."
        ResponseContext(string) : "Response Contexts" : "" : "Response system context(s) for this entity. Format should be: 'key:value,key2:value2,etc'. When this entity speaks, the list of keys & values will be passed to the response rules system."
        effects(integer) : "Effects" : : "Combination of effect flags to use."
        ltime(float) : "Local Time" : : "The local time of the entity, independent of the global clock. Used mainly for physics calculations."
        nextthink(float) : "Next Think" : : "Amount of time before the entity thinks again. See the Thinking page on the wiki."
        hammerid(integer) : "Hammer ID" : : "The entity's Hammer ID. Mainly used by plugins and debugging commands, such as ent_keyvalue. Can be manually assigned."


        input Kill(void) : "Removes this entity from the world."
        input KillHierarchy(void) : "Removes this entity and all its children from the world."
        input SetParent(string) : "Changes the entity's parent in the movement hierarchy."
        input SetParentAttachment(string) : "Change this entity to attach to a specific attachment point on its parent. Entities must be parented before being sent this input. The parameter passed in should be the name of the attachment."
        input SetParentAttachmentMaintainOffset(string) : "Change this entity to attach to a specific attachment point on it's parent. Entities must be parented before being sent this input. The parameter passed in should be the name of the attachment. The entity will maintain it's position relative to the parent at the time it is attached."
        input ClearParent(void) : "Removes this entity from the the movement hierarchy, leaving it free to move independently."
        input AddOutput(string) : "Adds an entity I/O connection to this entity. Format: <output name> <targetname>:<inputname>:<parameter>:<delay>:<max times to fire (-1 == infinite)>. Very dangerous, use with care."
        input FireUser1(void) : "Causes this entity's OnUser1 output to be fired."
        input FireUser2(void) : "Causes this entity's OnUser2 output to be fired."
        input FireUser3(void) : "Causes this entity's OnUser3 output to be fired."
        input FireUser4(void) : "Causes this entity's OnUser4 output to be fired."
        input Use(void) : "Same as a player invoking +use; may not do anything. Can also be invoked by creating an output that does not specify an input."
        input DispatchEffect(string) : "Dispatches a special effect from the entity's origin. This input has been removed in versions of Source since Left 4 Dead, as it was rendered obsolete by particles."
        input DispatchResponse(string) : "Dispatches a response to the entity. See the Response page and Concept page on the wiki."
        input AddContext(string) : "Adds to the entity's list of response contexts. Format is <key>:<value>. See the Response System page on the wiki."
        input RemoveContext(string) : "Remove a context from this entity's list. The name should match the key of an existing context."
        input ClearContext(string) : "Removes all contexts from this entity's list."


        output OnUser1(void) : "Fired in response to FireUser1 input."
        output OnUser2(void) : "Fired in response to FireUser2 input."
        output OnUser3(void) : "Fired in response to FireUser3 input."
        output OnUser4(void) : "Fired in response to FireUser4 input."
]

BaseAnimatingHL2Only base class (accurate for all source games until L4D2):


@BaseClass = BaseAnimatingHL2Only
[
        model(studio) : "World Model" : : "This MAY not work for blob_element. If not, see npc_blob_use_model."
        skin(integer) : "Skin" : 0 : "Some models have multiple versions of their textures, called skins. Set this to a number other than 0 to use that skin instead of the default."
        solid(choices) : "Collisions" : 0 =
        [
                0: "Not Solid"
                1: "BSP (QPhysics)"
                2: "Use Bounding Box"
                3: "Oriented Bounding Box"
                4: "Oriented Bounding Box, constrained to Yaw only"
                5: "Custom/Test"
                6: "Use VPhysics"
        ]
        SetBodyGroup(integer) : "Body Group" : : "Sets the the active $bodygroup."
        hitboxset(string) : "Hitbox Set" : : "Sets the $hboxset to use."
        sequence(integer) : "Sequence" : : "Default animation sequence for the model to be playing after spawning."
        playbackrate(float) : "Playback Rate" : 1 : "A multiplier of the framerate at which animations are played. Negative values are accepted."
        cycle(float) : "Cycle" : : "The current frame of the currently playing animation, on a range from 0-1."
        LightingOrigin(target_destination) : "Lighting Origin" : : "Select an entity (not info_lighting!) from which to sample lighting instead of the entity's origin."
        LightingOriginHack(target_destination) : "Lighting Origin Offset" : : "The info_lighting_relative from which to sample lighting instead of the entity's origin."
        damagefilter(target_destination) : "Damage Filter" : "" : "Name of the filter entity that controls which entities can damage us."
        fademindist(float) : "Start Fade Dist" : -1 : "Distance at which the prop starts to fade (<0 = use fademaxdist). If 'Screen Space Fade' is selected, this represents the number of pixels wide covered by the prop when it starts to fade."
        fademaxdist(float) : "End Fade Dist" : 0 : "Maximum distance at which the prop is visible (0 = don't fade out). If 'Screen Space Fade' is selected, this represents the *minimum* number of pixels wide covered by the prop when it fades."
        fadescale(float) : "Fade Scale" : 1 : "If you specify a fade in the worldspawn, or if the engine is running under dx7 [hl2/ep1/portal] or dx8 [ep2/tf], then the engine will forcibly fade out props even if fademindist/fademaxdist isn't specified." + " This scale factor gives you some control over the fade. Using 0 here turns off the forcible fades." + " Numbers smaller than 1 cause the prop to fade out at further distances, and greater than 1 cause it to fade out at closer distances."
        rendermode(choices) : "Render Mode" : 0 : "Used to set a non-standard rendering mode on this entity. See also 'FX Amount' and 'FX Color'." =
        [
                0: "Normal"
                1: "Color"
                2: "Texture"
                3: "Glow"
                4: "Solid"
                5: "Additive"
                6: "Number 6. Does nothing without custom code."
                7: "Additive Fractional Frame"
                8: "Alpha Add"
                9: "World Space Glow"
                10: "Invisible (polygons are still drawn)"
        ]
        renderamt(integer) : "FX Amount (0 - 255)" : 255 : "The FX amount is used by the selected Render Mode."
        rendercolor(color255) : "FX Color (R G B)" : "255 255 255" : "The FX color is used by the selected Render Mode."
        renderfx(choices) :"Render FX" : 0 =
        [
                0: "Normal"
                1: "Slow Pulse"
                2: "Fast Pulse"
                3: "Slow Wide Pulse"
                4: "Fast Wide Pulse"
                5: "Slow Fade Away"
                6: "Fast Fade Away"
                7: "Slow Become Solid"
                8: "Fast Become Solid"
                9: "Slow Strobe"
                10: "Fast Strobe"
                11: "Faster Strobe"
                12: "Slow Flicker"
                13: "Fast Flicker"
                14: "Constant Glow"
                15: "Distort"
                16: "Hologram (Distort + fade)"
                17: "Scale Up (May not be in HL2?)"
                18: "Unknown"
                19: "Unknown"
                20: "Unknown"
                21: "Unknown"
                22: "Spotlight FX (May not be in HL2?)"
                23: "Cull By Distance (TEST)"
                24: "Spotlight FX"
                26: "Fade Near"
        ]
        shadowcastdist(integer) : "Shadow Cast Distance" : 0 : "Use this to override how far this object casts shadows. 0 = default distance."
        disableshadows(choices) : "Disable Shadow Casting" : 0 =
        [
                0 : "No"
                1 : "Yes"
        ]
        disablereceiveshadows(choices) : "Disable Receiving Shadows" : 0 =
        [
                0 : "No"
                1 : "Yes"
        ]
        modelindex(integer) : "Model Index" : : "Changes the entitiy's model to a precached model on the map. Warning: Using an invalid value will instantly crash the game, this includes 0 and 1."
        modelscale(float) : "Model Scale" : 1 : "A multiplier for the size of the model. Negative values are accepted. Does not alter the physics collisions in most cases, however. Warning: Negative or extremely high values can cause crashes!"


        input skin(integer) : "Selects a skin from the model's index, starting with 0."
        input SetBodyGroup(integer) : "Sets the the active $bodygroup."
        input Ignite(void) : "Ignite, burst into flames"
        input IgniteLifetime(float) : "Ignite, with a parameter lifetime."
        input IgniteNumHitboxFires(integer) : "Ignite, with a parameter number of hitbox fires."
        input IgniteHitboxFireScale(float) : "Ignite, with a parameter hitbox fire scale."
        input BecomeRagdoll(void) : "Kills the entity and creates a client-side ragdoll from the model. Input is only passed if the model contains $collisionjoints, for other models phys_convert can be used instead."
        input SetLightingOrigin(target_destination) : "Sets the entity's lighting origin to an info_lighting."
        input SetLightingOriginHack(target_destination) : "Offsets the entity's lighting origin by their distance from an info_lighting_relative."
        input fademindist(float) : "Sets distance at which the entity starts fading. If <0, the entity will disappear instantly when end fade is hit. The value will scale appropriately if the entity is in a 3D Skybox."
        input fademaxdist(float) : "Sets distance at which the entity ends fading. If <0, the entity won't disappear at all. The value will scale appropriately if the entity is in a 3D Skybox."
        input SetModelScale(vector) : "Multiplies the size of the model. Does not alter the physics collisions in most cases, however. Negative values are accepted. Takes two values separated by a space. The first is the target model scale. The second value is the number of seconds the change in scale will be spread over. Warning: Negative or extremely high values can cause crashes!"
        input Alpha(integer) : "Sets the entity's transparency to a number from 0 (invisible) to 255 (fully visible). Requires the entity to have its Render Mode (rendermode) set to a number other than 0."
        input AlternativeSorting(integer) : "Swaps the rendering order of the entity. Used to attempt to fix sorting problems when rendering, for example an object rendering in front of translucent materials."
        input Color(color255) : "Sets an RGB color for the entity."
        input SetDamageFilter(target_destination) : "Sets a filter for this entity for when it receives damage."
        input EnableDamageForces(void) : "Allows the entity to be pushed by damage done to it (usually force amount correlates with the damage done)."
        input DisableDamageForces(void) : "Prevents the entity from being pushed by damage done to it."
        input EnableShadow(void) : "Allows the entity to draw a render target shadow."
        input DisableShadow(void) : "Prevents the entity from drawing a render target shadow."


        output OnIgnite(void) : "Fired when the entity catches fire, such as from an env_entity_igniter or the Ignite inputs."
]

ConVars/Commands

Cvar/Command Parameters or default value Descriptor Effect
npc_blob_use_model 2 Arbitrary number Chooses which model to show blob_elements as. Requires restart to take effect.
0. gibs/agibs.mdl (skull)
1. props_junk/watermelon01.mdl (watermelon)
2. w_squeak.mdl (snark (not in final game, shows error model))
3. baby_headcrab.mdl (baby headcrab (not in final game, shows error model))

Keyvalues

Note.pngNote:Content moved to Rendering and studio model related KIO/Keyvalues for continuation of page history


Inputs

Note.pngNote:Content moved to Rendering and studio model related KIO/Inputs for continuation of page history


Outputs

Note.pngNote:Content moved to Rendering and studio model related KIO/Outputs for continuation of page history