Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseDraw 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); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information