Garry's Mod Wiki

Entity:RemoveAllDecals

  Entity:RemoveAllDecals()

Description

Removes all decals from the entities surface.

Example

Removes all decals from all props in world.

for i, ent in ipairs( ents.FindByClass( "prop_physics" ) ) do ent:RemoveAllDecals() end