private void Awake() { linea = ""; Base = "Decimal"; Bina.SetActive(false); Octa.SetActive(false); Hexa.SetActive(false); }
public void Oct() { if (linea.Length == 0) { GameObject.Find(Base).SetActive(false); Octa.SetActive(true); Base = "Octal"; } else { texto2.text = logic.XtoOct(Base); Clear(); } }