using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour {
// Use this for initialization
void Start () {
UILabel lbl = NGUITools.AddWidget<UILabel>(this.gameObject);
lbl.text = "Hello world!";
}
// Update is called once per frame
void Update () {
}
}