GuiReady: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
Gets triggered when RAGE.Ui.DefaultWindow gets loaded and ready. | |||
{{ClientsideCsEvent}} | {{ClientsideCsEvent}} | ||
{{CSharpContainer| | {{CSharpContainer| | ||
<syntaxhighlight lang="c#"> | <syntaxhighlight lang="c#"> | ||
Revision as of 18:16, 29 November 2018
Gets triggered when RAGE.Ui.DefaultWindow gets loaded and ready.
Client-Side Event
C# Syntax
public delegate void OnGuiReadyDelegate();
Parameters
- This event requires no parameters
Example
Events.OnGuiReady += OnGuiReady;
public void OnGuiReady()
{
}