Version: 5.4
public static void FocusProjectWindow ();

説明

全面にプロジェクトウィンドウを表示し、フォーカスを当てます。

一般的にこれはアセットを作成し選択するメニューが実行された後に呼び出されています。


Changes the color of the selected GameObjects.

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( ); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961