暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. namespace Unity.AI.Navigation
  2. {
  3. /// <summary>
  4. /// Helper for compile-time constant strings for the [HelpURL](xref:UnityEngine.HelpURLAttribute) attribute.
  5. /// </summary>
  6. static class HelpUrls
  7. {
  8. const string Version = "2.0";
  9. const string BaseUrl = "https://docs.unity3d.com/Packages/com.unity.ai.navigation@" + Version;
  10. internal const string Manual = BaseUrl + "/manual/";
  11. internal const string Api = BaseUrl + "/api/";
  12. }
  13. }