Garry's Mod Wiki

ENTITY:PhysicsCollide

  ENTITY:PhysicsCollide( table colData, PhysObj collider )

Description

Called when the entity collides with anything. The move type and solid type must be VPHYSICS for the hook to be called.

If you want to use this hook on default/engine/non-Lua entites ( like prop_physics ), use Entity:AddCallback instead! This page describes a hook for Lua entities

Arguments

1 table colData
Information regarding the collision. See CollisionData structure.
2 PhysObj collider
The physics object that collided.

Example

Play a sound when we hit something.

function ENT:PhysicsCollide( data, phys ) if ( data.Speed > 50 ) then self:EmitSound( Sound( "Flashbang.Bounce" ) ) end end