Temporary Effects

From Sven Co-op
Jump to navigation Jump to search

Temporary entities are like normal entities except that they automatically kill themselves, use less bandwidth, and don’t crash the map if there are too many of them. All effects are visual only and don’t deal any damage or interact with other entities. Everything here is created using NetworkMessage, which lets you control which players can see the effect.

The point of this page is to demonstrate what each of the TE_* effects do and how you can customize them. Some of these effects can be created via API functions, but using NetworkMessages can give you a little more flexibility in those cases.

Most of the information presented here is based on this post, Half-Life SDK source files, and testing done by w00tguy and me (GeckonCZ). Please let us know of any inaccuracies or omissions.

See the Code Comments section or the example script if the code snippets are unclear and/or don’t work for you.

1 Beam Effects

TE_BEAMPOINTS
TE BEAMPOINTS.gif
TE_BEAMENTPOINT
TE BEAMENTPOINT.gif
TE_BEAMENTS
TE BEAMENTS.gif
TE_BEAMDISK
TE BEAMDISK.gif
TE_BEAMCYLINDER
TE BEAMCYLINDER.gif
TE_BEAMTORUS
TE BEAMTORUS.gif
TE_BEAMRING
TE BEAMRING.gif
TE_LIGHTNING
No preview.png
TE_BEAMSPRITE
TE BEAMSPRITE.gif
TE_BEAMFOLLOW
TE BEAMFOLLOW.gif
TE_KILLBEAM
No preview.png

2 Explosions & Simple Sprite Effects

TE_EXPLOSION
TE EXPLOSION.gif
TE_SMOKE
TE SMOKE.gif
TE_SPARKS
TE SPARKS.gif
TE_SPRITE
TE SPRITE.gif
TE_GLOWSPRITE
TE GLOWSPRITE.gif
TE_ARMOR_RICOCHET
TE ARMOR RICOCHET.gif
TE_DLIGHT
TE DLIGHT.gif
TE_ELIGHT
TE ELIGHT.gif
TE_PLAYERATTACHMENT
TE PLAYERATTACHMENT.gif
TE_KILLPLAYERATTACHMENTS
No preview.png

3 Sprite-based Particle Effects

TE_SPRITETRAIL
TE SPRITETRAIL.gif
TE_BUBBLETRAIL
TE BUBBLETRAIL.gif
TE_LARGEFUNNEL
TE LARGEFUNNEL.gif
TE_FIZZ
TE FIZZ.gif
TE_BUBBLES
TE BUBBLES.gif
TE_SPRITE_SPRAY
TE SPRITE SPRAY.gif
TE_SPRAY
File:ITE SPRAY.gif
TE_BLOODSPRITE
TE BLOODSPRITE.gif
TE_FIREFIELD
TE FIREFIELD.gif
TE_PLAYERSPRITES
TE PLAYERSPRITES.gif

4 Quake-style Effects

TE_GUNSHOT
File:Images/TE GUNSHOT.gif
TE_TAREXPLOSION
File:Images/TE TAREXPLOSION.gif
TE_EXPLOSION2
File:Images/TE EXPLOSION2.gif
TE_PARTICLEBURST
File:Images/TE PARTICLEBURST.gif
TE_LAVASPLASH
File:Images/TE LAVASPLASH.gif
TE_TELEPORT
File:Images/TE TELEPORT.gif
TE_LINE
File:Images/TE LINE.gif
TE_SHOWLINE
File:Images/TE SHOWLINE.gif
TE_BOX
File:Images/TE BOX.gif
TE_BLOODSTREAM
File:Images/TE BLOODSTREAM.gif
TE_BLOOD
File:Images/TE BLOOD.gif

5 Gibs & Other Model Effects

TE_MODEL
TE MODEL.gif
TE_EXPLODEMODEL
TE EXPLODEMODEL.gif
TE_BREAKMODEL
TE BREAKMODEL.gif
TE_PROJECTILE
TE PROJECTILE.gif

6 Tracer Effects

TE_TRACER
TE TRACER.gif
TE_IMPLOSION
TE IMPLOSION.gif
TE_STREAK_SPLASH
TE STREAK SPLASH.gif
TE_USERTRACER
TE USERTRACER.gif

7 Decals

I don’t recommend using these directly. Use the API functions defined in CUtility instead.

TE_DECAL
TE DECAL.gif
TE_PLAYERDECAL
TE PLAYERDECAL.gif
TE_GUNSHOTDECAL
TE GUNSHOTDECAL.gif
TE_MULTIGUNSHOT
TE MULTIGUNSHOT.gif
TE_DECALHIGH
No preview.png
TE_WORLDDECAL
No preview.png
TE_WORLDDECALHIGH
No preview.png
TE_BSPDECAL
No preview.png

8 Miscellaneous

TE_TEXTMESSAGE
No preview.png
 
Transparent.png

9 Engine Color Palettes

9.1 Palette #1

Palette #1 is slightly modified Quake palette and is used by TE_PARTICLEBURST, TE_BLOOD, TE_BLOODSTREAM, and TE_BLOODSPRITE effects.

File:Images/engine palette 1.png

9.2 Palette #2

Palette #2 is used by tracer effects, namely TE_USERTRACER and TE_STREAK_SPLASH. TE_TRACER uses color #4 from this palette.

File:Images/engine palette 2.png

Notes: * This color palette is hardcoded into the engine and only the first 12 colors are defined (index 0 through 11). * Index 4 holds the Default Tracer Color. Its initial value is {0,0,0} (Black), but the actual run-time color depends on a value of tracerred, tracergreen and tracerblue cvars. Opacity is determined by traceralpha cvar. Default RGB values are 0.8, 0.8 and 0.4. Defaut alpha is 0.5.

10 Code Comments

Anywhere you see a “sprite” parameter, assume that you can use either a sprite or a model (the same goes for “model” parameters).

See DoEffect() function for more information. Some of these functions have API equivalents, so just use those unless you have special needs.