public string text;
Описание
Содержащийся текст.
using UnityEngine;
public class ExampleScript : MonoBehaviour
{
void OnGUI()
{
GUI.Button(new Rect(0, 0, 100, 20), new GUIContent("Click me!"));
}
}
Содержащийся текст.
using UnityEngine;
public class ExampleScript : MonoBehaviour
{
void OnGUI()
{
GUI.Button(new Rect(0, 0, 100, 20), new GUIContent("Click me!"));
}
}