This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.xr.arfoundation@4.../Runtime/AR/HelpUrls.cs

19 lines
583 B
C#

namespace UnityEngine.XR.ARFoundation
{
/// <summary>
/// Helper for compile-time constant strings for the [HelpURL](xref:UnityEngine.HelpURLAttribute) attribute.
/// </summary>
static class HelpUrls
{
const string Version = "4.2";
const string BaseUrl = "https://docs.unity3d.com/Packages/com.unity.xr.arfoundation@" + Version;
public const string Manual = BaseUrl + "/manual/";
public const string Api = BaseUrl + "/api/";
public const string ApiWithNamespace = BaseUrl + "/api/UnityEngine.XR.ARFoundation.";
}
}