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.activeGameObject

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 activeGameObject: GameObject;
public static GameObject activeGameObject;

Descripción

Returns the active game object. (The one shown in the inspector).

It will also return game objects that might be prefabs or non-modifiable objects.

	// 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 function RotateGreenPlus45() { var obj = Selection.activeGameObject; obj.transform.Rotate(Vector3.up*45); }

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

@MenuItem ("Example/Rotate green -45 #g") static function RotateGreenMinus45() { var obj = Selection.activeGameObject; obj.transform.Rotate(Vector3.down*45); }

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