Gizmos.DrawIcon Manual     Reference     Scripting  
Scripting > Runtime Classes > Gizmos
Gizmos.DrawIcon

static function DrawIcon (center : Vector3, name : String, allowScaling : boolean = true) : void

Description

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.

JavaScript
// 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 example : MonoBehaviour {
void OnDrawGizmos() {
Gizmos.DrawIcon(transform.position, "Light Gizmo.tiff", true);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def OnDrawGizmos():
Gizmos.DrawIcon(transform.position, 'Light Gizmo.tiff', true)