API reference
API reference
Select your platform
No SDKs available
No versions available

FOvrAssetFileDeleteResult Struct

An AssetFileDeleteResult contains the result of a deleted asset file. You can delete an asset file by using UOvrRequestsBlueprintLibrary::AssetFile_DeleteById() or UOvrRequestsBlueprintLibrary::AssetFile_DeleteByName(). The delete result contains the field FOvrAssetFileDeleteResult::AssetId, the file path, and the success status of the deleted asset.

Constructors

FOvrAssetFileDeleteResult ()
This is the default constructor for the struct, which initializes the ::ovrAssetFileDeleteResultHandle and TOvrMessageHandlePtr to their default values.
Signature
FOvrAssetFileDeleteResult::FOvrAssetFileDeleteResult()
FOvrAssetFileDeleteResult ( OvrHandle , MessageHandlePtr )
Copying values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
FOvrAssetFileDeleteResult::FOvrAssetFileDeleteResult(ovrAssetFileDeleteResultHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrAssetFileDeleteResultHandle
MessageHandlePtr: TOvrMessageHandlePtr

Fields

AssetFileId : FOvrId
DeprecatedYou can use field FOvrAssetFileDeleteResult::AssetId to retrieve the ID of the asset file.
Signature
FOvrId FOvrAssetFileDeleteResult::AssetFileId
AssetId : FOvrId
This represents the ID of the asset file. When you want to use field FOvrAssetFileDeleteResult::AssetFileId, you need to use field FOvrAssetFileDeleteResult::AssetId instead. It can be retrieved using field FOvrAssetDetails::AssetId.
Signature
FOvrId FOvrAssetFileDeleteResult::AssetId
Filepath : FString
File path of the asset file.
Signature
FString FOvrAssetFileDeleteResult::Filepath
Success : bool
You can use this to determine whether deleting an asset file was successful or not.
Signature
bool FOvrAssetFileDeleteResult::Success

Member Functions

Clear ()
Setting all values to their defaults, effectively clearing the struct.
Signature
void FOvrAssetFileDeleteResult::Clear()
Returns
void
Update ( OvrHandle , MessageHandlePtr )
Updating values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
void FOvrAssetFileDeleteResult::Update(ovrAssetFileDeleteResultHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrAssetFileDeleteResultHandle
MessageHandlePtr: TOvrMessageHandlePtr
Returns
void