版本:Unity 6 (6000.0)
语言英语
  • C#

帮助.BrowseURL

提出建议

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出每项建议,并且将在适用的情况下进行更新。

关闭

提交失败

出于某种原因,未能提交您的建议。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void BrowseURL(string url);

说明

在默认网络浏览器中打开 url


可加载任何所选 GameObject 文档的编辑器窗口。

using UnityEngine;
using UnityEditor;

// EditorScript that quickly searchs for a help page // of the selected Object. // // If there is no page found on the Manual it opens the Unity forum.

class QuickHelper : EditorWindow { Object source;

[@MenuItem("Example/QuickHelper _h")] static void Init() { EditorWindow window = EditorWindow.GetWindowWithRect(typeof(QuickHelper), new Rect(0, 0, 165, 100)); window.Show(); }

void OnGUI() { EditorGUILayout.BeginHorizontal(); source = EditorGUILayout.ObjectField(source, typeof(Object)); EditorGUILayout.EndHorizontal();

if (GUILayout.Button("Search!")) { if (source == null) { this.ShowNotification(new GUIContent("No object selected for searching")); } else { if (Help.HasHelpForObject(source)) { Help.ShowHelpForObject(source); } else { Help.BrowseURL("https://forum.unity3d.com/search.php"); } } } } }