标签:style blog io ar color sp for on div
using UnityEngine; using System.Collections; public class Userwords : MonoBehaviour { private UIInput input; public UITextList textlist; void Start () { } void Update () { } void Awake() { input=this.GetComponent<UIInput>(); } void OnClick() { input.value=this.transform.GetComponentInChildren<UILabel>().text; string chatMessage=input.value; textlist.Add(chatMessage); input.value=""; } }
标签:style blog io ar color sp for on div
原文地址:http://www.cnblogs.com/heisaijuzhen/p/4124732.html