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

EditorUtility.FocusProjectWindow

建议修改

成功!

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

关闭

提交失败

由于某些原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void FocusProjectWindow();

描述

将项目窗口置于最前面并使其获得焦点。

这通常在调用创建并选择资源的菜单项后被调用。


更改所选游戏对象的颜色。

using UnityEngine;
using UnityEditor;

public class FocusProjectWindowExample : EditorWindow { static Color matColor = Color.white;

[MenuItem("Example/Color Change")] static void Init() { // Get existing open window or if none, make a new one: FocusProjectWindowExample window = (FocusProjectWindowExample)EditorWindow.GetWindow(typeof(FocusProjectWindowExample)); window.Show(); }

void OnGUI() { matColor = EditorGUI.ColorField(new Rect(3, 3, position.width - 6, 15), "New Color:", matColor); if (GUI.Button(new Rect(3, 25, position.width - 6, 30), "Change")) ChangeColors(); }

void ChangeColors() { if (Selection.activeGameObject) { foreach (GameObject t in Selection.gameObjects) { Renderer rend = t.GetComponent<Renderer>();

if (rend) rend.sharedMaterial.color = matColor; } }

EditorUtility.FocusProjectWindow(); }

void OnInspectorUpdate() { Repaint(); } }