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

スクリプト言語

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

Handles.ConeCap

Suggest a change

Success!

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.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function ConeCap(controlID: int, position: Vector3, rotation: Quaternion, size: float): void;
public static void ConeCap(int controlID, Vector3 position, Quaternion rotation, float size);
public static def ConeCap(controlID as int, position as Vector3, rotation as Quaternion, size as float) as void

Description

Draw a Cone. Pass this into handle functions.

Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles.
Cone Cap in the Scene View.

	// Draw one cone on each axis that points where the transform is looking at
	//
	// Usage: Attach the "DummyCubeCapScript.js" script to any Object you want
	// See this working on
	
	@CustomEditor (DummyConeCapScript)
	class ConeCap extends Editor {
		
		var coneSize : float = 1;
	
	    function OnSceneGUI () {
	    	Handles.color = Color.red;
	    	Handles.ConeCap(0,
				target.transform.position + Vector3(-5,0,0),
				target.transform.rotation,
				coneSize);
	    	Handles.color = Color.green;
	    	Handles.ConeCap(0,
				target.transform.position + Vector3(0,-5,0),
				target.transform.rotation,
				coneSize);    	
	    	Handles.color = Color.blue;
	    	Handles.ConeCap(0,
				target.transform.position + Vector3(0,0,-5),
				target.transform.rotation,
				coneSize);
	    }
	}

And the script attached to this Handle:

	//DummyCubeCapScript.js
	
	Debug.Log("I have CubeCap Handles attached to this transform!");