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.

Gizmos.DrawIcon

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 DrawIcon(center: Vector3, name: string, allowScaling: bool = true): void;
public static void DrawIcon(Vector3 center, string name, bool allowScaling = true);
public static function DrawIcon(center: Vector3, name: string, allowScaling: bool = true): void;
public static void DrawIcon(Vector3 center, string name, bool allowScaling = true);

Parámetros

Descripción

Draw an icon at a position in the scene view.

The image filename for the icon is specified with the name parameter while the center parameter denotes the location of the icon in world space and the allowScaling parameter determines if the icon is allowed to be scaled. The image file should be placed in the Assets/Gizmos folder.

DrawIcon can be used to allow important objects in your game to be selected quickly.

	// Draws the Light bulb icon at position of the object.
	// Because we draw it inside OnDrawGizmos the icon is also pickable 
	// in the scene view.

function OnDrawGizmos () { Gizmos.DrawIcon (transform.position, "Light Gizmo.tiff", true); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnDrawGizmos() { Gizmos.DrawIcon(transform.position, "Light Gizmo.tiff", true); } }