Gamemode.PostPlayerDraw
From GMod Wiki
Event Hook | |
Hook Name | PostPlayerDraw |
Syntax | GM:PostPlayerDraw( Entity player ) |
Description | This is called after the player is drawn. |
Returns | Nil |
Lua State | |
BBCode | [b][url=wiki.garrysmod.com/?title=Gamemode.PostPlayerDraw]Gamemode.PostPlayerDraw [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
Description | Print a message after the player is drawn. |
---|---|
Used on | |
Code | hook.Add("PostPlayerDraw", "test", function(ply) print(ply) end) |
Output | N/A |