2025-05-18 01:04:31 +08:00

16 lines
435 B
C#

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