Button b = GetComponent<Button>(); Text t = GetComponent<Text>(); b.onClick.AddListener(() => { //change text here t.text = "The quick brown fox.."; });. There ...
確定! 回上一頁