Gamemode.PostDrawOpaqueRenderables
From GMod Wiki
Event Hook | |
Hook Name | PostDrawOpaqueRenderables |
Syntax | GM:PostDrawOpaqueRenderables( ) |
Description | This is called after entites are drawn. |
Returns | Nil |
Lua State | |
BBCode | [b][url=wiki.garrysmod.com/?title=Gamemode.PostDrawOpaqueRenderables]Gamemode.PostDrawOpaqueRenderables [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
Description | Print a message after all entites are drawn. |
---|---|
Used on | |
Code | function GM:PostDrawOpaqueRenderables() Msg( "Entities have been drawn!" ) end |
Output | N/A |