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.

Selection.objects

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 var objects: Object[];
public static Object[] objects;

Descripción

La selección de la escena actual sin filtrar.

All objects will be returned, including assets in projects. You can also assign objects to the selection.

See Also: Selection.instanceIDs.


Scriptable Wizard that lets you select GameObjects by their tag.

class SelectAllOfTag extends ScriptableWizard {
    var tagName = "ExampleTag";

@MenuItem ("Example/Select All of Tag...") static function SelectAllOfTagWizard() { ScriptableWizard.DisplayWizard( "Select All of Tag...", SelectAllOfTag, "Make Selection"); }

function OnWizardCreate() { var gos: GameObject[] = GameObject.FindGameObjectsWithTag(tagName); Selection.objects = gos; } }
using UnityEngine;
using UnityEditor;

class SelectAllOfTag : ScriptableWizard { string tagName = "ExampleTag";

[MenuItem ("Example/Select All of Tag...")] static void SelectAllOfTagWizard() { ScriptableWizard.DisplayWizard( "Select All of Tag...", typeof(SelectAllOfTag), "Make Selection"); }

void OnWizardCreate() { GameObject[] gos = GameObject.FindGameObjectsWithTag(tagName); Selection.objects = gos; } }