Welcome, Guest! Login | Register

Clearing Decals [Print this Article]
Posted by: omega
Date posted: Jan 14 2004
User Rating: 4 out of 5.0
Number of views: 2142
Number of comments: 0
Description: This snippet gives you some simple code to utilize the client side decal clearing function to wipe all decals from the map for a round reset, or whatever.
In FLFD I have created a command to clear decals (which is also called at round reset). It's really simple, I'm providing it here because we've often received questions about this.

This command is declared in input.cpp, it's the best place for it IMO, and you can still call it from elsewhere in the client simply by calling the function directly.

 CODE (C++) 

#include "r_efx.h"

void IN_ClearDecals(void)
{
for ( int x = 0; x < (int)CVAR_GET_FLOAT( "r_decals" ); x++ )
 gEngfuncs.pEfxAPI->R_DecalRemoveAll ( x );
}



notes:
r_decals is the client's actual allocated decals, eg: there are two decal cvars!! This one is usually overlooked. It defaults to 4096, so thats why the command looks for it, incase the client changes it.
If the client changes this cvar to a lower value before decals are cleared, any decals with indices > that value won't be removed, so it's something you should consider.

Rate This Article
This article is currently rated: 4 out of 5.0 (2 Votes)

You have to register to rate this article.
User Comments

No User Comments

You must register to post a comment. If you have already registered, you must login.

Latest Articles
3rd person View in Multiplayer
Half-Life 2 | Coding | Client Side Tutorials
How to enable it in HL2DM

By: cct | Nov 13 2006

Making a Camera
Half-Life 2 | Level Design
This camera is good for when you join a map, it gives you a view of the map before you join a team

By: slackiller | Mar 05 2006

Making a camera , Part 2
Half-Life 2 | Level Design
these cameras are working monitors that turn on when a button is pushed.

By: slackiller | Mar 04 2006

Storing weapons on ladder
Half-Life 2 | Coding | Snippets
like Raven Sheild or BF2

By: British_Bomber | Dec 24 2005

Implementation of a string lookup table
Half-Life 2 | Coding | Snippets
A string lookup table is a set of functions that is used to convert strings to pre-defined values

By: deathz0rz | Nov 13 2005


Latest Comments
New HL HUD Message System
Half-Life | Coding | Shared Tutorials
By: chbrules | Dec 31 2011
 
knock knock
General | News
By: Whistler | Nov 05 2011
 
Particle Engine tutorial part 4
Half-Life | Coding | Client Side Tutorials
By: darkPhoenix | Feb 18 2010
 
Particle Engine tutorial part 2
Half-Life | Coding | Client Side Tutorials
By: darkPhoenix | Feb 11 2010
 
Particle Engine tutorial part 3
Half-Life | Coding | Client Side Tutorials
By: darkPhoenix | Feb 11 2010
 
Game Movement Series #2: Analog Jumping and Floating
Half-Life 2 | Coding | Shared Tutorials
By: mars3554 | Oct 26 2009
 
Particle Engine tutorial part 5
Half-Life | Coding | Client Side Tutorials
By: Deadpool | Aug 02 2009
 
Particle Engine tutorial part 5
Half-Life | Coding | Client Side Tutorials
By: Persuter | Aug 02 2009
 
Particle Engine tutorial part 5
Half-Life | Coding | Client Side Tutorials
By: Deadpool | Aug 02 2009
 
Particle Engine tutorial part 5
Half-Life | Coding | Client Side Tutorials
By: Persuter | Jul 25 2009
 

Site Info
297 Approved Articless
6 Pending Articles
3940 Registered Members
0 People Online (4 guests)
About - Credits - Contact Us

Wavelength version: 3.0.0.9
Valid XHTML 1.0! Valid CSS!