Garry's Mod Wiki

hide_freezepanel

Description

Called when the freeze cam is finished.
Example cause:

local ply = Entity( 1 ) ply:Spectate( OBS_MODE_FREEZECAM ) timer.Simple( 1, function() ply:UnSpectate() end )

Examples

Example

This is a basic template with the purpose of including all arguments / table variables to make it easily known which values can be accessed.

gameevent.Listen( "hide_freezepanel" ) hook.Add( "hide_freezepanel", "hide_freezepanel_example", function( data ) // Called when the freeze cam is finished end )