Class LoadingScreen
Loading screen like the transition between story mode and online.
Inherited Members
Namespace: LemonUI.Scaleform
Assembly: LemonUI.SHVDN3.dll
Syntax
public class LoadingScreen : BaseScaleform, IScaleform, IDrawable, IProcessable, IDisposable
Constructors
View SourceLoadingScreen(string, string, string)
Creates a new GTA Online like loading screen with no image.
Declaration
public LoadingScreen(string title, string subtitle, string description)
Parameters
| Type | Name | Description |
|---|---|---|
| string | title | The title of the screen. |
| string | subtitle | The subtitle of the screen. |
| string | description | The description of the screen. |
LoadingScreen(string, string, string, string, string)
Creates a new GTA Online like loading screen with a custom texture.
Declaration
public LoadingScreen(string title, string subtitle, string description, string dictionary, string texture)
Parameters
| Type | Name | Description |
|---|---|---|
| string | title | The title of the screen. |
| string | subtitle | The subtitle of the screen. |
| string | description | The description of the screen. |
| string | dictionary | The dictionary where the texture is located. |
| string | texture | The texture to use on the right. |
Properties
View SourceDescription
The description of the loading screen.
Declaration
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Dictionary
The Texture Dictionary (TXD) where the texture is loaded.
Declaration
public string Dictionary { get; }
Property Value
| Type | Description |
|---|---|
| string |
Subtitle
The subtitle of the loading screen.
Declaration
public string Subtitle { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Texture
The texture in the dictionary.
Declaration
public string Texture { get; }
Property Value
| Type | Description |
|---|---|
| string |
Title
The title of the loading screen.
Declaration
public string Title { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
View SourceChangeTexture(string, string)
Changes the texture shown on the loading screen.
Declaration
public void ChangeTexture(string dictionary, string texture)
Parameters
| Type | Name | Description |
|---|---|---|
| string | dictionary | The Texture Dictionary or TXD. |
| string | texture | The Texture name. |
Update()
Updates the Title, Description and Image of the loading screen.
Declaration
public override void Update()