Exemplo n.º 1
0
 public void UpdateText(StringListData stringListDataObj)
 {
     textObj.text = stringListDataObj.ReturnCurrentLine();
 }
Exemplo n.º 2
0
 // Update is called once per frame
 void Update()
 {
     //replace update with an event system
     textObj.text = stringListDataObj.ReturnCurrentLine(); // this will constantly spit out current numbers. We like how short it is.
 }
Exemplo n.º 3
0
 private void Update()
 {
     textObj.text = stringListDataObj.ReturnCurrentLine();
 }
Exemplo n.º 4
0
 void UpdateStringData(StringListData stringListDataObj)
 {
     textObj.text = stringListDataObj.ReturnCurrentLine();
 }