Objects

Functions

GetClass (UClass)

Gets a class object for the supplied class.

Parameters

  1. Package (String)

  2. Class Name (String)

Example

local AShip = GetClass('Athena', 'Ship')

GetStruct (UScriptStruct)

Gets a UScriptStruct object for the supplied struct.

Parameters

  1. Package (String)

  2. Struct Name (String)

Example


GetObject (UObject)

Finds the first instance of an object. Use an SDK to find things.

Parameters

  1. Object Full Name (String)

Example


LoadAsset (UObject)

Load an object from a PAK. Primarily used for loading Blueprint classes that are normally otherwise garbage collected/not always loaded. You're also able to load assets such as materials or textures as well.

Parameters

  1. Asset Path (String)

  2. Object Name (String)

Example

Last updated