17 lines
488 B
C#
17 lines
488 B
C#
namespace UnityEngine.XR.ARSubsystems
|
|
{
|
|
/// <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.arsubsystems@" + Version;
|
|
|
|
public const string Manual = BaseUrl + "/manual/";
|
|
|
|
public const string Api = BaseUrl + "/api/";
|
|
}
|
|
}
|