Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

EditorUtility.FocusProjectWindow

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function FocusProjectWindow(): void;
public static void FocusProjectWindow();

Descripción

Brings the project window to the front and focuses it.

This is commonly called after a menu item that creates and selects an asset is invoked.


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( ); } }