版本:Unity 6 (6000.0)
语言简体中文
  • C#

选择.activeGameObject

建议变更

成功!

感谢您帮助我们提升 Unity 文档的质量。我们无法采纳所有提交的内容,但会阅读用户提出的每项更改建议,并在适当的情况下进行更新。

关闭

提交失败

由于某些原因,无法提交您建议的更改。请在几分钟后重试。感谢您花时间帮助我们提升 Unity 文档的质量。

关闭

取消

public static GameObject activeGameObject;

说明

返回活动游戏对象。(在检查器中显示的对象)。

它还将返回可能是预设或不可修改对象的游戏对象。

using UnityEngine;
using UnityEditor;

class Example : EditorWindow { // Rotates the selected Game Object +45 degrees if the user presses 'g' // or -45 degrees if the user presses 'Shift + g' // If no object is selected, the Menus are grayed out.

[MenuItem("Example/Rotate Green +45 _g")] static void RotateGreenPlus45() { GameObject obj = Selection.activeGameObject; obj.transform.Rotate(Vector3.up * 45); }

[MenuItem("Example/Rotate Green +45 _g", true)] static bool ValidatePlus45() { return Selection.activeGameObject != null; }

[MenuItem("Example/Rotate green -45 #g")] static void RotateGreenMinus45() { GameObject obj = Selection.activeGameObject; obj.transform.Rotate(Vector3.down * 45); }

[MenuItem("Example/Rotate green -45 #g", true)] static bool ValidateMinus45() { return Selection.activeGameObject != null; } }