番組内に出てきたプログラムのこの部分

if(state == STATE.NONE)
{
image.gameObject.SetActive(false);
}
else
{
image.gameObject.SetActive(true);
}

これってこういうふうにも書ける

image.gameObject.SetActive(state != STATE.NONE);