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.arsubsystems@4.../Runtime/HelpUrls.cs

17 lines
488 B
C#
Raw Normal View History

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/";
}
}