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

Env entity dissolver: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (revert)
(position in the world irrelevant so it's logical entity)
 
(33 intermediate revisions by 19 users not shown)
Line 1: Line 1:
{{wrongtitle|title=env_entity_dissolver}}
{{LanguageBar}}
==Entity Description==
{{Ent not in fgd}}
Entity Dissolver
[[File:Hardshock_dissolver.gif|thumb|right|300px|Dissolving a weapon (Heavy electrical).]]
{{CD|CEntityDissolve|file1=EntityDissolve.cpp}}
{{This is a|logical entity|name=env_entity_dissolver}} It can remove a point entity (typically a prop) from the map after a few built-in effects (this entity will not work on [[brush entities]]). If the target is an NPC, it will be killed. Then the target entity's mass is set to zero, turns black and then (depending on what the '''Dissolve Type''' is set to) emits random light particles with a few tesla (lightning) effects.
 
{{note|The dissolve will not work on a {{ent|player}}. The player entity and any [[ragdoll]] left behind when the player is killed are two distinct entities. Using this entity on a live player ''will'' kill the player, however.''}}
 
{{note|When dissolving a entity, 10000 damage will be applied to it simultaneously. The damage will be credited (as attacker and inflictor) to the player with the lowest player index.}}
 
{{Portal2}} In Portal 2, the [[Fizzler]] effect will be used, regardless of the <code>Dissolve Type</code> option.
 
{{note|In Portal 2, entities dissolved using this entity will not fire their <code>OnFizzled</code> outputs. For [[prop_weighted_cube|cubes]], use the <code>Dissolve</code> input on the cube instead.}}
 
==Keyvalues==
==Keyvalues==
* {{kv targetname}}
{{KV Targetname}}
* '''target'''
{{KV|Target to Dissolve|intn=target|target_destination|Targetname of the entity to dissolve.}}
: <target_destination> Targetname of the entity you want to dissolve.
{{KV|Magnitude|intn=magnitude|int|How strongly to push away from the center.}}
* '''magnitude'''
{{KV|Dissolve Type|intn=dissolvetype|choices|Particle effects to be generated when something is dissolved.}}
: <integer> How strongly to push away from the center.
:{| class=standard-table
* '''dissolvetype'''
: <choices> Dissolve Type
:{|
! Literal Value || Description
! Literal Value || Description
|-
|-
Line 19: Line 27:
| 2 || Light electrical
| 2 || Light electrical
|-
|-
| 3 || Core Effect
| 3 || Core effect
|}
|}
==Inputs==
==Inputs==
* {{i targetname}}
{{I|Dissolve|param=target_destination|Dissolve target, if no target is passed it'll use the target specified in the target field.}}
* '''Dissolve <target_destination>'''
: Dissolve target, if no target is passed it'll use the target specified in the target field.
==Outputs==
* {{o targetname}}
[[Category:Half-Life 2: Episode One Entities]]

Latest revision as of 04:22, 29 April 2025

English (en)Translate (Translate)
Icon-NotInFGD.png
This entity is not in the Counter-Strike: SourceDay of Defeat: SourceTeam Fortress 2Left 4 DeadLeft 4 Dead 2Counter-Strike: Global Offensive FGD by default.
See below for instructions on making it available.
Dissolving a weapon (Heavy electrical).
C++ Class hierarchy
CEntityDissolve
CBaseEntity
C++ EntityDissolve.cpp

env_entity_dissolver is a logical entity available in all Source Source games. It can remove a point entity (typically a prop) from the map after a few built-in effects (this entity will not work on brush entities). If the target is an NPC, it will be killed. Then the target entity's mass is set to zero, turns black and then (depending on what the Dissolve Type is set to) emits random light particles with a few tesla (lightning) effects.

Note.pngNote:The dissolve will not work on a player. The player entity and any ragdoll left behind when the player is killed are two distinct entities. Using this entity on a live player will kill the player, however.
Note.pngNote:When dissolving a entity, 10000 damage will be applied to it simultaneously. The damage will be credited (as attacker and inflictor) to the player with the lowest player index.

Portal 2 In Portal 2, the Fizzler effect will be used, regardless of the Dissolve Type option.

Note.pngNote:In Portal 2, entities dissolved using this entity will not fire their OnFizzled outputs. For cubes, use the Dissolve input on the cube instead.

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

Target to Dissolve (target) <targetname>
Targetname of the entity to dissolve.
Magnitude (magnitude) <integer>
How strongly to push away from the center.
Dissolve Type (dissolvetype) <choices>
Particle effects to be generated when something is dissolved.
Literal Value Description
0 Energy
1 Heavy electrical
2 Light electrical
3 Core effect

Inputs

Dissolve <targetnameRedirectInput/string>
Dissolve target, if no target is passed it'll use the target specified in the target field.