Env shooter: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Added on fire bug (thanks Maki))
(updates)
Line 1: Line 1:
{{lang|Env shooter}}
{{base point|env_shooter|sprite=1}} It shoots giblets out of its origin. These gibs can be either models or sprites.
{{base point|env_shooter|sprite=1}} It shoots giblets out of its origin. These gibs can be either models or sprites.


{{in code|class=class_c_env_shooter.html CEnvShooter|file=effects_8cpp-source.html effects.cpp}}
{{code class|CEnvShooter|effects.cpp}}


{{clr}}
{{clr}}


== Keyvalues ==
==Flags==
{{KV|Model|studio|Thing to shoot out. Can be a .mdl (model) or a .vmt (material/sprite).}}
{{Fl GibshooterBase}}
{{KV|Material Sound|choices|Material Sound}}
 
:* -1 : None
==Keyvalues==
:* 0 : Glass
{{KV EnvShooter}}
:* 1 : Wood
{{KV GibshooterBase}}
:* 2 : Metal
:* 3 : Flesh
:* 4 : Concrete
{{KV|Simulate|choices|Simulate}}
:* 0 : Point
:* 1 : Physics
:* 2 : Ragdoll
{{KV|Gib Skin|integer|Some models have multiple versions of their textures, called skins. Set this to a number other than 0 to use that skin on all gibs produced by this shooter.}}
{{KV|Disable Shadows on Gibs|boolean}}
{{KV|Gib gravity scale|float|Gib gravity scale. This field allows you to scale gravity so that gibs fall faster, slower, or not at all.{{note|This functionality only works for point-based gibs.}}}}
{{KV|Mass override|float|Specify an arbitrary mass for the gibs emitted by me.}}
{{KV gibshooterbase}}
{{KV RenderFields}}
{{KV RenderFields}}
{{KV BaseEntity|css=1}}


== Flags ==
==Inputs==
:* 2 : On fire {{bug|does not work with [[prop_ragdoll|ragdolls]]}}
{{I GibshooterBase}}
:* 4 : strict remove after lifetime
{{Fl gibshooterbase}}
 
== Inputs ==
{{I gibshooterbase}}
{{I RenderFields}}
{{I RenderFields}}
{{I BaseEntity}}


== Outputs ==
==Outputs==
{{O gibshooterbase}}
{{O BaseEntity|l4d=1}}

Revision as of 20:34, 29 September 2018

English (en)Translate (Translate)

Template:Base point It shoots giblets out of its origin. These gibs can be either models or sprites.

C++ In code, it is represented by theCEnvShooterclass, defined in theeffects.cppfile.

Flags

Repeatable : [1]

Keyvalues

GibShooter:

Number of Gibs (m_iGibs) <integer>
Total number of gibs to shoot each time the entity should shoot.
Delay between shots (delay) <float>
Delay (in seconds) between shooting each gib. If 0, all gibs shoot at once.
Gib Angles (Pitch Yaw Roll) (gibangles) <vector3>
The orientation of the spawned gibs.
Max angular velocity (gibanglevelocity) <float>
How fast (degrees/sec) the gibs should spin. They will spin on the x and y axes between 10% and 100% of this speed.
Gib Velocity (m_flVelocity) <float>
Speed of the fired gibs.
Course Variance (m_flVariance) <float>
How much variance in the direction gibs are fired.
Gib Life (m_flGibLife) <float>
Time in seconds for gibs to live +/- 5%.
Lighting Origin (lightingorigin) <targetname>
Select an entity (not info_lighting!) to specify a location to sample lighting from for all gibs spawned by this shooter, instead of their own origins.
Physics (simulation) <choices>
How the gibs will be physically simulated.

RenderFields:


Render Mode (rendermode) <byte choices>
Set a non-standard rendering mode on this entity.
Render Modes
  • 0: Normal
  • 1: Color
  • 2: Texture
  • 3: Glow
  • 4: Solid/Alphatest Obsolete
  • 5: Additive
  • 6: Removed, does nothing Obsolete
  • 7: Additive Fractional Frame
  • 8: Alpha Add
  • 9: World Space Glow
  • 10: Don't Render
Render FX (renderfx) <byte choices>
Various somewhat legacy alpha effects. See render effects.
Render Amount / Transparency (renderamt) <byte>
Transparency amount, requires a Render Mode other than Normal. 0 is invisible, 255 is fully visible.
Render Color (R G B) (rendercolor) <color255>
Color tint.


Inputs

GibShooter:

Shoot
Force the gibshooter to create and shoot a gib.

RenderFields:

Alpha <integer 0–255>
Sets the entity's transparency to a number from 0 (invisible) to 255 (fully visible). Requires the entity to have its rendermode set to a number other than 0.
Color <color255RedirectInput/color32>
Sets an RGB color for the entity.


Outputs