Clear Decals Bind

Decals are any effects added to the walls and ground of map as a result of gameplay: blood, graffitis, etc. This bind will instantly clear all decals when you press the SHIFT key. This is useful as it will make things easier to see - for example, often blood on walls makes it harder to see enemies who are peeking in front of it.

Bind Commands

Below is the basic/most common variation of the clear decals bind. It will clear decals (blood, bullet holes, etc) when the M key is pressed. Press the "Change Key" button to bind this to a different key. Copy and paste the command into your developer console or autoexec to apply the bind.

Click the copy button to copy the bind to your clipboard. You can also optionally press the download button to download a config file for this bind.

CS2

CS2

In CS2, decals can only be toggled and cheats must be enabled. This bind enables cheats and toggles decals (pressing it once will hide decals, pressing it again will show them). We will update this bind if there is ever an update to CS2 that changes this.

bind o "sv_cheats 1; toggle r_csgo_render_decals"
Currently Bound To:
O

How it Works

This bind is very simple. The "r_cleardecals" command will remove all decals (blood, bullet holes, etc) from the map. The "bind m" part of this command tells the game to bind whatever is next to the m key, which is "r_cleardecals" (so decals are cleared when m is pressed).

Ad

Other Bind Variations

Find different variations of this bind below.

  • Clear Decals With SHIFT

    CS:GO Compatible Only

    If you'd like to clear decals whenever you shift, this bind will do that. Note that sometimes decals like blood and bullet holes can be useful indicators of whether or not an enemy has been in an area, so we recommend using the main bind. Copy and paste the below console command into your developer console or autoexec to apply it to your game.

    bind shift "+speed; r_cleardecals"
  • Clear Decals Whenever You Move

    CS:GO Compatible Only

    This command will bind your WASD keys to the clear decals command so that your decals are cleared whenever you move your character.

    bind w "+forward;r_cleardecals";bind a "+moveleft;r_cleardecals";bind s "+back;r_cleardecals";bind d "+moveright;r_cleardecals"