Garry's Mod Wiki

GM:InitPostEntity

  GM:InitPostEntity()

Description

Called after all the entities are initialized. Starting from this hook LocalPlayer will return valid object.

At this point the client only knows about the entities that are within the spawnpoints' PVS (Potential Visibility Set). For instance, if the server sends an entity that is not within this PVS, the client will receive it as NULL entity.

Example

Some message will be printed in the console when the entities initialize.

function GM:InitPostEntity() print( "All Entities have initialized" ) end -- That way you are overriding the default hook. -- You can use hook.Add to make more functions get called when this event occurs. hook.Add( "InitPostEntity", "some_unique_name", function() print( "Initialization hook called" ) end )
Output: Initialization hook called and All Entities have initialized.