UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ActorElementDataUtil Namespace Reference

Functions

AActorGetActorFromHandle (const FTypedElementHandle &InHandle, const bool bSilent)
 
AActorGetActorFromHandleChecked (const FTypedElementHandle &InHandle)
 
template<typename ElementHandleType >
TArray< AActor * > GetActorsFromHandles (TArrayView< const ElementHandleType > InHandles, const bool bSilent=false)
 
template<typename ElementHandleType >
TArray< AActor * > GetActorsFromHandlesChecked (TArrayView< const ElementHandleType > InHandles)
 

Function Documentation

◆ GetActorFromHandle()

ENGINE_API AActor * ActorElementDataUtil::GetActorFromHandle ( const FTypedElementHandle InHandle,
const bool  bSilent = false 
)

Attempt to get the actor from the given element handle.

Note
This is not typically something you'd want to use outside of data access within an interface implementation.
Returns
The actor if the element handle contains FActorElementData, otherwise null.

◆ GetActorFromHandleChecked()

ENGINE_API AActor * ActorElementDataUtil::GetActorFromHandleChecked ( const FTypedElementHandle InHandle)

Attempt to get the actor from the given element handle, asserting if the element handle doesn't contain FActorElementData.

Note
This is not typically something you'd want to use outside of data access within an interface implementation.
Returns
The actor.

◆ GetActorsFromHandles()

TArray< AActor * > ActorElementDataUtil::GetActorsFromHandles ( TArrayView< const ElementHandleType InHandles,
const bool  bSilent = false 
)

Attempt to get the actors from the given element handles.

Note
This is not typically something you'd want to use outside of data access within an interface implementation.
Returns
The actors of any element handles that contain FActorElementData, skipping any that don't.

◆ GetActorsFromHandlesChecked()

TArray< AActor * > ActorElementDataUtil::GetActorsFromHandlesChecked ( TArrayView< const ElementHandleType InHandles)

Attempt to get the actors from the given element handles, asserting if any element handle doesn't contain FActorElementData.

Note
This is not typically something you'd want to use outside of data access within an interface implementation.
Returns
The actors.