UnityEditor.Help.BrowseURL C# (CSharp) Method

BrowseURL() private method

private BrowseURL ( string url ) : void
url string
return void
        public static extern void BrowseURL(string url);
        /// <summary>

Usage Example

示例#1
0
 private static void ComponentBasedWorkflowButton()
 {
     GUILayout.BeginHorizontal();
     if (EditorGUILayout.LinkLabel(s_Styles.m_LearnAboutComponent))
     {
         Help.BrowseURL("https://github.com/Unity-Technologies/NavMeshComponents");
     }
     GUILayout.EndHorizontal();
 }
All Usage Examples Of UnityEditor.Help::BrowseURL