Show / Hide Table of Contents

Class LoadingScreen

Loading screen like the transition between story mode and online.

Inheritance
object
BaseScaleform
LoadingScreen
Implements
IScaleform
IDrawable
IProcessable
IDisposable
Inherited Members
BaseScaleform.scaleform
BaseScaleform.IsValueReady(int)
BaseScaleform.GetValue<T>(int)
BaseScaleform.CallFunction(string, params object[])
BaseScaleform.CallFunction<T>(string, params object[])
BaseScaleform.CallFunctionReturn(string, params object[])
BaseScaleform.DrawFullScreen()
BaseScaleform.Draw()
BaseScaleform.Process()
BaseScaleform.Dispose()
BaseScaleform.Handle
BaseScaleform.Name
BaseScaleform.Visible
BaseScaleform.IsLoaded
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: LemonUI.Scaleform
Assembly: LemonUI.SHVDN3.dll
Syntax
public class LoadingScreen : BaseScaleform, IScaleform, IDrawable, IProcessable, IDisposable

Constructors

View Source

LoadingScreen(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.

View Source

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 Source

Description

The description of the loading screen.

Declaration
public string Description { get; set; }
Property Value
Type Description
string
View Source

Dictionary

The Texture Dictionary (TXD) where the texture is loaded.

Declaration
public string Dictionary { get; }
Property Value
Type Description
string
View Source

Subtitle

The subtitle of the loading screen.

Declaration
public string Subtitle { get; set; }
Property Value
Type Description
string
View Source

Texture

The texture in the dictionary.

Declaration
public string Texture { get; }
Property Value
Type Description
string
View Source

Title

The title of the loading screen.

Declaration
public string Title { get; set; }
Property Value
Type Description
string

Methods

View Source

ChangeTexture(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.

View Source

Update()

Updates the Title, Description and Image of the loading screen.

Declaration
public override void Update()
Overrides
BaseScaleform.Update()

Implements

IScaleform
IDrawable
IProcessable
IDisposable
  • View Source
In this article
Back to top Generated by DocFX