Version: 2017.2
public static void DrawIcon (Vector3 center, string name, bool allowScaling= true);

Descripción

Dibuja un icono en la posición en la 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 se puede utilizar para permitirle a los objetos en su juego que sean seleccionados rápidamente.

using UnityEngine;
using System.Collections;

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