position | 屏幕上用于按钮的矩形。 |
text | 在按钮上显示的文本。 |
image | 在按钮上显示的纹理。 |
content | 此按钮的文本、图像和工具提示。 |
style | 要使用的样式。如果省略,则使用当前GUISkin中的button 样式。 |
bool 当用户点击按钮时为true
。
制作一个单次按下按钮。用户点击它们,并且会立即发生某些事情。
// Draws 2 buttons, one with an image, and other with a text // And print a message when they got clicked.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Texture btnTexture;
void OnGUI() { if (!btnTexture) { Debug.LogError("Please assign a texture on the inspector"); return; }
if (GUI.Button(new Rect(10, 10, 50, 50), btnTexture)) Debug.Log("Clicked the button with an image");
if (GUI.Button(new Rect(10, 70, 50, 30), "Click")) Debug.Log("Clicked the button with text"); } }