Gamemode.PostRenderVGUI
From GMod Wiki
Event Hook | |
Hook Name | PostRenderVGUI |
Syntax | GM:PostRenderVGUI( ) |
Description | Called after the VGUI has been rendered. |
Returns | Nil |
Lua State | |
BBCode | [b][url=wiki.garrysmod.com/?title=Gamemode.PostRenderVGUI]Gamemode.PostRenderVGUI [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
Description | Prints text to the console after the VGUI has been rendered. |
---|---|
Used on | |
Code | function GM:PostRenderVGUI() print( "VGUI has been drawn!" ) end |
Output | VGUI has been drawn! |