Skip to content
Permalink
5a1d10e567
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
36 lines (22 sloc) 515 Bytes
using UnityEngine;
//YOU MUST USE THIS LINE TO GET ACCESS TO UI STUFF
using UnityEngine.UI;
using System.Collections;
public class TextBox : MonoBehaviour {
public float Str;
public string StrString;
public Text textRef;
// Use this for initialization
void Start () {
Str = 0;
}
// Update is called once per frame
void Update () {
}
public void ClickTest(string text){
Debug.Log (text);
Str = Random.Range (1, 10);
StrString = Str.ToString();
textRef.text = StrString;
}
}