Welcome, Guest! Login | Register

Clearing Decals [Print this Article]
Posted by: omega
Date posted: Jan 13 2004
User Rating: 4 out of 5.0
Number of views: 1443
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 04 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
Spinning Corpses Simple Fix
Half-Life | Coding | Snippets
By: darkPhoenix | Sep 05 2008
 
Where do we go from here
General | News
By: MIFUNE | Jun 09 2008
 
The Input/Output system
Half-Life 2 | Level Design
By: nazitaco | Dec 23 2007
 
Where do we go from here
General | News
By: Rob_F | Nov 22 2007
 
Rescaling Half-Life
Half-Life | Coding | Shared Tutorials
By: christoph | Nov 12 2007
 
GameUI
Half-Life 2 | Coding | Client Side Tutorials
By: Evil_j | Oct 29 2007
 
3 State Zoom For Any Weapon
Half-Life 2 | Coding | Server Side Tutorials
By: Ennuified | Oct 18 2007
 
Storing weapons on ladder
Half-Life 2 | Coding | Snippets
By: cct | Sep 07 2007
 
CTF Gameplay Part 1
Half-Life | Coding | Shared Tutorials
By: DarkNight | Aug 28 2007
 
CTF Gameplay Part 1
Half-Life | Coding | Shared Tutorials
By: deedok | Aug 20 2007
 

Site Info
296 Approved Articless
5 Pending Articles
3940 Registered Members
1 Person Online (35 guests)
About - Credits - Contact Us

Wavelength version: 3.0.0.9
Valid XHTML 1.0! Valid CSS!