🍀 Assets
Retrieve Assets from Asset Packs
info
Static Functions
Returns | Name | Description |
---|---|---|
table | GetAssetPacks | Returns an array of tables containing information about all loaded Asset Packs |
table | GetAnimations | Returns an array of strings containing all Animation Assets Keys from an AssetPack |
table | GetMaps | Returns an array of strings containing all Map Asset Keys from an AssetPack |
table | GetMaterials | Returns an array of strings containing all Materials Asset Keys from an AssetPack |
table | GetParticles | Returns an array of strings containing all Particle Assets Keys from an AssetPack |
table | GetSounds | Returns an array of strings containing all Sound Assets Keys from an AssetPack |
table | GetSkeletalMeshes | Returns an array of strings containing all Skeletal Mesh Asset Keys from an AssetPack |
table | GetStaticMeshes | Returns an array of strings containing all Static Mesh Assets Keys from an AssetPack |
table | GetOthers | Returns an array of strings containing all Other Assets Keys from an AssetPack |
GetAssetPacks
Returns an array of tables containing information about all loaded Asset Packs
Returned table format
[{Name, Path, Author, Version}, ...]
Assets.GetAssetPacks()
GetAnimations
Returns an array of strings containing all Animation Assets Keys from an AssetPack
Assets.GetAnimations(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetMaps
Returns an array of strings containing all Map Asset Keys from an AssetPack
Assets.GetMaps(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetMaterials
Returns an array of strings containing all Material Assets Keys from an AssetPack
Assets.GetMaterials(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetParticles
Returns an array of strings containing all Particle Assets Keys from an AssetPack
Assets.GetParticles(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetSounds
Returns an array of strings containing all Sound Assets Keys from an AssetPack
Assets.GetSounds(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetSkeletalMeshes
Returns an array of strings containing all Skeletal Mesh Asset Keys from an AssetPack
Assets.GetSkeletalMeshes(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetStaticMeshes
Returns an array of strings containing all Static Mesh Assets Keys from an AssetPack
Assets.GetStaticMeshes(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |
GetOthers
Returns an array of strings containing all Other Assets Keys from an AssetPack
Assets.GetOthers(asset_pack_path)
Type | Parameter | Description |
---|---|---|
string | asset_pack_path | The Asset Pack path to get the assets |