4
我需要在LibGDX中臨時隱藏一個標籤或圖像,所以我可以讓一部分按鈕是圖像或文本,具體取決於傳遞的值,我有試試這個:有沒有辦法在LibGDX中臨時隱藏一個場景小部件
public void SetScore(int score)
{
if(score<0)
{
highScore.setWidth(0);
lockImage.setWidth(50);
}
else
{
highScore.setText(Integer.toString(score));
highScore.validate();
lockImage.setWidth(0);
}
}
它完全失敗,有誰知道如何做到這一點?
Thankyou非常完美!我不知道爲什麼我沒有看到setVisible之前,我發誓我通過所有的設置 – nekosune