Raphafrei

MTL

May 30th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5.  
  6. public class Language : MonoBehaviour {
  7.  
  8.     public int l;
  9.     public MultiTextLanguage[] MTL;
  10.  
  11.     void Update() {
  12.         MTL[//Setar Tudo Aqui//].text = MTL[].language[l];
  13.     }
  14.  
  15.     [System.Serializable]
  16.     public class MultiTextLanguage {
  17.         public string name;
  18.         public Text text;
  19.         public string[] language;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment