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

スクリプト言語

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

Gizmos.DrawCube

public static function DrawCube(center: Vector3, size: Vector3): void;

Description

中心とサイズを持つキューブを描画する

	function OnDrawGizmosSelected () {
		// Draw a semitransparent blue cube at the transforms position
		Gizmos.color = Color (1,0,0,.5);
		Gizmos.DrawCube (transform.position, Vector3 (1,1,1));
	}