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.
CloseMake a 3D Button.
This works like a normal GUI.Button, but it has a 3D position and is drawn by a handle function
Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles.// Create a simple button on 3D space and when the user clicks over the handle // it prints a message. @CustomEditor (ButtonChecker) class ButtonHandle extends Editor { function OnSceneGUI () { target.checkButton = Handles.Button(target.transform.position + Vector3(0,2,0), Quaternion.identity, 3, 3, Handles.DrawSolidRectangleWithOutline); } }
And the script attached to this handle:
// Usage: Place this script on the object you want to create the button on. // When the script is placed, just press "Play" and click the rectangle // that appears over the GameObject var checkButton : boolean = true; function Update() { if(checkButton) Debug.Log("The handle button has been pressed!"); }