UARBlueprintLibrary::AddTrackedPointWithName

Manually add a tracked point with name and world transform.

Choose your operating system:

Windows

macOS

Linux

References

Module

AugmentedReality

Header

/Engine/Source/Runtime/AugmentedReality/Public/ARBlueprintLibrary.h

Include

#include "ARBlueprintLibrary.h"

Source

/Engine/Source/Runtime/AugmentedReality/Private/ARBlueprintLibrary.cpp

Syntax

static bool AddTrackedPointWithName
(
    const FTransform & WorldTransform,
    const FString & PointName,
    bool bDeletePointsWithSameName
)

Remarks

Manually add a tracked point with name and world transform. : transform in the world space where the point should be created. : the name of the created point, must be non-empty. : if existing points with the same name should be deleted.

that this is an async operation - the added point won't be available until a few frames later.

Returns

if the operation succeeds.