study/first_study/Library/PackageCache/com.unity.shadergraph@3686fafd4720/Editor/Util/Documentation.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

23 lines
870 B
C#

using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Unity.ShaderGraph.Editor.Tests")]
namespace UnityEngine.Rendering.ShaderGraph
{
//Need to live in Runtime as Attribute of documentation is on Runtime classes \o/
class Documentation : DocumentationInfo
{
//This must be used like
//[HelpURL(Documentation.baseURL + Documentation.version + Documentation.subURL + "some-page" + Documentation.endURL)]
//It cannot support String.Format nor string interpolation
internal const string baseURL = "https://docs.unity3d.com/Packages/com.unity.shadergraph@";
internal const string subURL = "/manual/";
internal const string endURL = ".html";
internal static string GetPageLink(string pageName)
{
return baseURL + version + subURL + pageName + endURL;
}
}
}