Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.xr.arfoundation@ef86c118adc4/Runtime/ARSubsystems/XREraseAnchorResult.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

19 lines
558 B
C#

namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// The result of an operation to erase an anchor from persistent storage.
/// </summary>
public struct XREraseAnchorResult
{
/// <summary>
/// The status of the erase operation. If `resultStatus.IsError()`, the anchor was not erased.
/// </summary>
public XRResultStatus resultStatus;
/// <summary>
/// The persistent anchor GUID requested to be erased.
/// </summary>
public SerializableGuid savedAnchorGuid;
}
}