言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Gizmos.DrawIcon

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

Description

シーンビューにアイコンを描画します

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);
	}