GuiReady

From RAGE Multiplayer Wiki
Revision as of 21:54, 29 November 2018 by Sake (talk | contribs)

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");
}