GuiReady: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
No edit summary
Line 15: Line 15:
public void OnGuiReady()
public void OnGuiReady()
{
{
 
    RAGE.Chat.Output("Default window ready");
}
}
</syntaxhighlight>
</syntaxhighlight>
}}
}}

Revision as of 21:54, 29 November 2018

Gets triggered when RAGE.Ui.DefaultWindow gets loaded and ready.

Client-Side
Event

 C#



C# Syntax

public delegate void OnGuiReadyDelegate();

Parameters

  • This event requires no parameters

Example

Events.OnGuiReady += OnGuiReady;
public void OnGuiReady()
{
    RAGE.Chat.Output("Default window ready");
}