1090630 多個If使用
by 黃國哲 2020-06-30 22:50:30, Reply(0), Views(606)
IF可以同時使用多個:
void Update()
{
if (Keyme.text == "abc1")
tip.text= " Data ";
if (Keyme.text == "abc1")
tip2.text=" More Data ";
if (Keyme.text == "abc")
tip.text= " 安安 ";
}
也可以從語法裡直接對Text輸入內容:
在TEXT中輸入與下語法:
tip2.text=" More Data ";
Reply