19 lines
583 B
C#
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.";
|
|
}
|
|
}
|