Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class UITest : MonoBehaviour
  2. {
  3. public void OnGUI()
  4. {
  5. Debug.Log("UITest.OnGUI");
  6. GUILayout.BeginArea(new Rect(20f, (float)(Screen.height / 4), 530f, 500f));
  7. GUILayout.Label("TEST");
  8. GUILayout.EndArea();
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement